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

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

@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}}
{{ csrf_field() }} {{ method_field('DELETE') }}
@endsection