{{ __('All Pending Approvals') }}

{{-- Care about people's approval and you will be their prisoner. --}}
@if (session()->has('success'))
{{ session('success') }}
@endif @if (session()->has('error'))
{{ session('error') }}
@endif
@if ($uploadedData)
@foreach ($uploadedData as $index => $uploadedData_item) {{-- --}} @endforeach
@if ($sortField !== 'file_name') @else @endif Batch Number Created By Total Amount Status Total Records @if ($sortField !== 'created_at') @else @endif Action
{{ $uploadedData_item->file_name }} {{ $uploadedData_item->organizationBatch->batch_number }} {{ $uploadedData_item->user->username ?? '' }} ${{ $uploadedData_item->organizationBatch->total_amount }} {{ $uploadedData_item->organizationBatch->status }} {{ $uploadedData_item->organizationBatch->total_records }} {{ $uploadedData_item->organizationBatch->created_at }}
{{ $uploadedData->links() }}
@elseif($data)
@foreach ($data as $index => $row) @endforeach
Name Account Provider Account Number Amount Recurring Date
{{ $index }} {{ $row->name }} {{ $row->account_provider }} {{ $row->account_number }} {{ $row->amount }} {{ $row->is_recurring }} {{ $row->payment_date }}
@else

No Pending Approvals

@endif