@extends('admin/layouts.master') @section('title', 'All Pending Payout - Instructor') @section('body')
@include('admin.message')

{{ __('adminstaticword.PendingPayout') }}


@foreach($payout as $pay) @endforeach
#
{{ __('adminstaticword.User') }} {{ __('adminstaticword.Course') }} {{ __('adminstaticword.OrderId') }} {{ __('adminstaticword.PayoutDeatil') }}
1
{{$pay->user->fname}} {{$pay->courses->title}} {{$pay->order->order_id}} Total Amount: {{$pay->total_amount}}
Instructor Revenue: {{$pay->instructor_revenue}}
@endsection @section('scripts') @endsection