@extends('layouts.baseAdmin') @section('title', 'Laman Utama') @section('content')

Jumlah Pengguna

{{ $userCount }}

Jumlah Tempahan

{{ $bookingCount }}

Jumlah Bayaran

RM{{ number_format($totalPayment, 2) }}
{{-- User Booking Table --}}

Senarai Tempah Servis

{{--

A lightweight, extendable, dependency-free javascript HTML table plugin.

--}}
@foreach ($bookings as $booking) @endforeach
ID Nama Servis Tarikh Status Tindakan
{{ $booking->id }} {{ $booking->user->name }} {{ $booking->service->name }} @if ($booking->subService) ({{ $booking->subService->name }}) @endif {{ $booking->created_at ? $booking->created_at ->format('d/m/Y') : '-' }} {{ $booking->status }}
@endsection