@extends('layouts.app') @section('title', 'Dashboard - Saai Cards') @section('content')

Dashboard

Overview of today's activity.

Today's Bookings

{{ $todayBookings }}

receipt_long

Today's Advance

₹{{ number_format($todayCollection, 0) }}

payments

Pending Jobs

{{ $pendingJobs }}

pending_actions

Completed Jobs

{{ $completedJobs }}

task_alt

Today's Bookings

{{ count($todayBookingsList) }} Orders
@if(count($todayBookingsList) > 0) @foreach($todayBookingsList as $booking) @endforeach
Job Name Status Total Amount
{{ $booking->job_name ?? 'Unnamed Job' }} {{ $booking->status }} ₹{{ number_format($booking->grand_total, 0) }}
@else
inbox

No bookings found for today.

@endif

Job Status

@php $total = $pendingJobs + $completedJobs; $pendingPercent = $total > 0 ? ($pendingJobs / $total) * 100 : 0; @endphp
Pending
{{ $pendingJobs }}
Completed
{{ $completedJobs }}
@endsection