@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')
{{ __('Total') }}
{{ $stats['total'] }}
{{ __('Pending') }}
{{ $stats['pending'] }}
{{ __('Confirmed') }}
{{ $stats['confirmed'] }}
{{ __('Done') }}
{{ $stats['done'] }}
{{ __('All bookings') }}
@foreach(['' => __('All'), 'pending' => __('Pending'), 'confirmed' => __('Confirmed'), 'done' => __('Done'), 'cancelled' => __('Cancelled')] as $val => $label) {{ $label }} @endforeach {{ __('Slot settings') }}
@forelse($bookings as $b) @empty @endforelse
{{ __('Slot') }} {{ __('Name') }} {{ __('Email') }} {{ __('Company') }} {{ __('Status') }} {{ __('Actions') }}
{{ $b->slot_at->format('Y-m-d H:i') }} {{ $b->name }} {{ $b->email }} {{ $b->company ?? '—' }} {{ ucfirst($b->status) }} {{ __('View') }}
{{ __('No bookings yet.') }}
@if($bookings->hasPages())
{{ $bookings->links() }}
@endif
@endsection