@extends('user.layout.app') @section('content')

Dashboard

Welcome to User Panel

Total Properties

{{ auth()->user()->properties()->count() }}

Total Bookings

{{ \App\Models\PropertyBooking::whereHas('property', fn ($q) => $q->where('user_id', auth()->id()))->count() }}

@endsection