@extends('admin.layouts.master') @section('title', 'All Completed - Admin') @section('maincontent') @component('components.breadcumb',['fourthactive' => 'active']) @slot('heading') {{ __('All Completed') }} @endslot @slot('menu1') {{ __('Instructor') }} @endslot @slot('menu2') {{ __('Instructor Payout') }} @endslot @slot('menu3') {{ __('All Completed') }} @endslot @endcomponent
{{ __('All Completed')}}
@foreach($payout as $pay) @endforeach
# {{ __('adminstaticword.User') }} {{ __('adminstaticword.Payer') }} {{ __('adminstaticword.PayTotal') }} {{ __('adminstaticword.OrderId') }} {{ __('adminstaticword.PayStatus') }} {{ __('adminstaticword.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) {{ __('adminstaticword.Recieved') }} @else {{ __('adminstaticword.Pending') }} @endif {{ __('adminstaticword.View') }}
@endsection @section('scripts') @endsection