@extends('admin.includes.master-admin') @section('content')
     Completed      Processing

Orders

@if(Session::has('message'))
× {{ Session::get('message') }}
@endif
@foreach($orders as $order) @if($order->status == "completed") @elseif($order->status == "processing") @else @endif @endforeach
Customer Email Customer Name Total Product Total Cost Payment Method Actions
{{$order->customer_email}} {{$order->customer_name}} {{array_sum($order->quantities)}} ${!! $order->pay_amount !!} {{$order->method}} View Details Send Email
@stop @section('footer') @stop