@props(['freeBusiness', 'paidBusiness', 'canHandleStatus' => false])
@if ($canHandleStatus) @endif @foreach ($paidBusiness as $item) @if ($canHandleStatus) @endif @endforeach
User Name Business Name Payment Amount Payment Proof Payment MethodStatusCreated At
{{ isset($item->user->first_name) ? $item->user->first_name : $item->user?->name ?? 'Admin' }} {{ $item->name }} {{ $item->transactions->amount ?? 0 }} {{ ucfirst($item->transactions->type) ?? 'N/A' }} @if ($item->status == '0') @endif {{ $item->created_at->format('Y-m-d') }}
@if ($paidBusiness instanceof Illuminate\Pagination\LengthAwarePaginator) {{ $paidBusiness->links() }} @endif
@if ($canHandleStatus) @endif @foreach ($freeBusiness as $item) @if ($canHandleStatus) @endif @endforeach
User Name Business Name Website Phone Created AtStatus
{{ isset($item->user->first_name) ? $item->user->first_name : $item->user?->name ?? 'Admin' }} {{ $item->name }} {{ $item->website ?? 'N/A' }} {{ $item->phone ?? 'N/A' }} {{ $item->created_at->format('Y-m-d H:i:s') }} @if ($item->status == '0') @endif
@if ($freeBusiness instanceof Illuminate\Pagination\LengthAwarePaginator) {{ $freeBusiness->links() }} @endif
Full Image
@push('bottom-scripts') @endpush