@extends('layouts.admin') @section('content') {{ $thirtyDayReservationCount }} Reservations made in last 30 days {{ $thirtyDayContactSubmissionCount }} Contact form submission in last 30 days Todays Bookings Name Time Joining For Actions @foreach($todaysBookings as $booking) {{ $booking->first_name }} {{ $booking->last_name }} {{ $booking->reservation_time }} {{ str_replace('_', ' ', $booking->joining_for) }} View Edit @csrf Cancel Delete @endforeach This Weeks Bookings Name Time Joining For Actions @foreach($thisWeeksBookings as $booking) {{ $booking->first_name }} {{ $booking->last_name }} {{ $booking->reservation_time }} {{ str_replace('_', ' ', $booking->joining_for) }} View Edit Cancel Delete @csrf Cancel @method('destroy') Delete @endforeach Latest 10 Masterclass Bookings Click the row to view Name Date Time Session @foreach($mcbookings as $booking) {{ $booking->first_name }} {{ $booking->last_name }} {{ date('d/m/Y', strtotime($booking->masterclass_date)) }} {{ date('H:i', strtotime($booking->masterclass_time)) }} {{ $booking->masterclass }} @endforeach Latest 10 Personal training Bookings Click the row to view Name Date Time Session @foreach($ptbookings as $booking) {{ $booking->first_name }} {{ $booking->last_name }} {{ date('d/m/Y', strtotime($booking->ptsession_date)) }} {{ date('H:i', strtotime($booking->ptsession_time)) }} {{ $booking->ptsession }} @endforeach @endsection