@extends('admin.layouts.master') @section('title', 'All Pending Payout - Instructor') @section('maincontent') @include('admin.layouts.topbar',$data)
{{ __('Pending Payout')}}
@can(' instructor-pending-payout.manage') @endcan
@foreach($payout as $pay) @endforeach
# {{ __('User') }} {{ __('Course') }} {{ __('OrderId') }} {{ __('PayoutDeatil') }}
1
@if(isset($pay->user)){{$pay->user->fname}}@endif @if(isset($pay->courses)){{$pay->courses->title}}@endif @if(isset($pay->order)){{$pay->order->order_id}}@endif {{ __('TotalAmount') }}: {{$pay->total_amount}}
{{ __('InstructorRevenue') }}: {{$pay->instructor_revenue}}
@endsection @section('scripts') @endsection