@extends('layouts.admin') @section('content')
@foreach($mcbookings as $booking) @endforeach
Name Date & Time Session No of guests Actions
{{ $booking->first_name }} {{ $booking->last_name }} {{ date('d/m/Y', strtotime($booking->masterclass_date)) }} {{ date('H:i', strtotime($booking->masterclass_time)) }} {{ $booking->masterclass }} {{ $booking->no_of_guests }}
@csrf @method('delete')
{{ $mcbookings->links() }}
@endsection