{{ config('app.name', 'Laravel') }}
@if(Auth::user()->isClient())
Dashboard Find Golfers My Bookings Messages Payments My Reviews
@elseif(Auth::user()->isGolfer())
Dashboard My Profile Bookings Availability Messages Earnings My Reviews
@elseif(Auth::user()->isAdmin())
Dashboard

Management

Users Management Golfer Approvals @php $pendingCount = \App\Models\GolferProfile::where('profile_status', 'pending')->count(); @endphp @if($pendingCount > 0) {{ $pendingCount }} @endif Bookings Management Reviews @php $flaggedReviewsCount = \App\Models\Review::flagged()->count(); @endphp @if($flaggedReviewsCount > 0) {{ $flaggedReviewsCount }} @endif {{-- Disputes @php $activeCancellations = \App\Models\Cancellation::whereIn('status', ['pending', 'processing'])->count(); @endphp @if($activeCancellations > 0) {{ $activeCancellations }} @endif --}} Payments Bank Verifications @php $pendingBankCount = \App\Models\GolferProfile::whereNotNull('bank_name') ->whereNotNull('account_number') ->where('bank_verified', false) ->count(); @endphp @if($pendingBankCount > 0) {{ $pendingBankCount }} @endif Withdrawals @php $pendingWithdrawalCount = \App\Models\Withdrawal::where('status', 'pending')->count(); @endphp @if($pendingWithdrawalCount > 0) {{ $pendingWithdrawalCount }} @endif

Analytics & Settings

Reports Settings
@endif
Profile Settings
@csrf