@extends('admin.layouts.master') @section('title', 'All Pending Payouts - Instructor') @section('maincontent') @component('components.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('Pending Payouts') }} @endslot @slot('menu1') {{ __('My Revenue') }} @endslot @slot('menu2') {{ __('Pending Payouts') }} @endslot @endcomponent
@if ($errors->any()) @endif
{{ __('All Pending Payouts')}}
@foreach($payout as $pay) @endforeach
# {{ __('adminstaticword.User') }} {{ __('adminstaticword.Course') }} {{ __('adminstaticword.TransactionId') }} {{ __('adminstaticword.TotalAmount') }} {{ __('adminstaticword.Delete') }}
1 {{$pay->user->fname}} {{$pay->courses->title}} {{$pay->order->order_id}} {{$pay->instructor_revenue}} {{ __("Delete")}}
@endsection