@extends('admin.layouts.master') @section('title', 'All paid Payout - Instructor') @section('maincontent') @component('components.breadcumb',['fourthactive' => 'active']) @slot('heading') {{ __('All paid Payout') }} @endslot @slot('menu1') {{ __('Instructor') }} @endslot @slot('menu2') {{ __('Instructor Payout') }} @endslot @slot('menu3') {{ __('All paid Payout') }} @endslot @endcomponent
{{ __('All paid Payout')}}
@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