@extends('layouts.app') @section('title', __('Demo bookings')) @section('page-title', __('Demo bookings')) @section('page-subtitle', __('Requests submitted from the public booking page.')) @section('content') @include('super-admin._nav')
| {{ __('Slot') }} | {{ __('Name') }} | {{ __('Email') }} | {{ __('Company') }} | {{ __('Status') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|
| {{ $b->slot_at->format('Y-m-d H:i') }} | {{ $b->name }} | {{ $b->email }} | {{ $b->company ?? '—' }} | {{ ucfirst($b->status) }} |
|
| {{ __('No bookings yet.') }} | |||||