@section('title', 'Bookings') {{ __('Bookings List') }}
Our All Course Enlistment List
Showing {{ ($bookings->currentPage() - 1) * $bookings->perPage() + ($bookings->total() ? 1 : 0) }} to {{ ($bookings->currentPage() - 1) * $bookings->perPage() + count($bookings) }} of {{ $bookings->total() }} Results
@foreach ($bookings as $row) @endforeach
ID Booking Date Contact Information Course Note
{{ $row->id }} {{ \Carbon\Carbon::parse($row->created_at)->format('d M. Y h:i A') }}
  • Name: {{ $row->name }}
  • Phone: {{ $row->phone }}
  • Email: {{ $row->email }}
@if (is_array($row->course_details) && count($row->course_details))
  • {{ $row->course_details['title'] ?? 'N/A' }}
  • Duration: {{ $row->course_details['duration'] ?? 'N/A' }}
  • Lectures: {{ $row->course_details['lectures'] ?? 'N/A' }}
  • Price: {{ Currency::money($row->course_details['price']) ?? 'N/A' }}
@else N/A @endif
{{ $row->note ?? 'No note' }}
{{ $bookings->appends(request()->except('page'))->links('pagination::bootstrap-4') }}