@extends('backend.layouts.master') @section('admin-title') All Entries - List @endsection @section('admin-content')

Workshop Booking List

@if (session('success'))
{{ session('success') }}
@endif @foreach ($bookings as $booking) @endforeach
ID Full Name Email Date Guests Actions
{{ $booking->id }} {{ $booking->full_name }} {{ $booking->email }} {{ $booking->booking_date }} {{ $booking->guests }} Edit |
@csrf @method('DELETE')
@endsection