@extends('adminlte::page')
@section('title', 'Dashboard')
@section('content_header')
Dashboard
@stop
@section('content')
@php
$appointments = Appointment::whereMonth('booking_date', Carbon::now()->month)
->whereYear('booking_date', Carbon::now()->year)
->where('status', 'Confirmed') // Only show confirmed appointments
->get();
@endphp
Welcome to this beautiful admin panel.
@stop
@section('css')
{{-- Add here extra stylesheets --}}
{{-- --}}
@stop
@section('js')
@stop