@extends('layouts.app') @section('content')

Dashboard

Dashboard

@csrf
Total Users
{{ $totalUsers }}
Total Attractions
{{ $totalAttractions }}
Total Bookings
{{ $totalBookings }}
Total Revenue
Rp {{ number_format($totalRevenue, 0, ',', '.') }}

Monthly Bookings

Monthly Revenue

Top Attractions

User Growth

Recent Activities

    @foreach($recentActivities as $activity)
  • @if(!$loop->last) @endif
    @if($activity->type === 'booking') @elseif($activity->type === 'review') @else @endif

    {{ $activity->description }}

  • @endforeach
@push('scripts') @endpush
@endsection