@extends('admin.layouts.master') @section('title', 'All Completed - Admin') @section('maincontent') @include('admin.layouts.topbar',$data)
{{ __('All Completed')}}
@foreach($payout as $pay) @endforeach
# {{ __('User') }} {{ __('Payer') }} {{ __('PayTotal') }} {{ __('OrderId') }} {{ __('PayStatus') }} {{ __('View') }}
1 {{$pay->user->fname}} {{$pay->payer_id}} {{$pay->pay_total}} @foreach($pay->order_id as $order) @php $id= App\Order::find($order); @endphp @if(isset($id->order_id)){{ $id['order_id'] }} @endif, @endforeach @if($pay->pay_status ==1) {{ __('Recieved') }} @else {{ __('Pending') }} @endif {{ __('View') }}
@endsection @section('scripts') @endsection