@extends('layouts.portal') @section('title', 'Dashboard') @section('content') {{-- Print Date Picker Modal --}} @push('scripts') @endpush

{{ $stats['pending'] }}

Pending

{{ $stats['processing'] }}

Processing

{{ $stats['success'] }}

Success

{{ $stats['rejected'] }}

Rejected
@foreach($services as $category => $items)
{{ strtoupper($category) }}
@foreach($items as $service) @endforeach
@endforeach
My Recent Requests
View All
@if($recentRequests->isEmpty())

Abhi tak koi request nahi hai.

@else
@foreach($recentRequests as $req) @endforeach
Request No Service Amount Status Date
{{ $req->request_no }} {{ $req->service->name }} ₹{{ number_format($req->charge, 2) }} {{ ucfirst($req->status) }} {{ $req->created_at->format('d M Y, h:i A') }}
@endif
@endsection