@extends('layouts.admin') @section('title') Booked Seats Details | Admin @endsection @section('content')

Booked Seats Details

@foreach ($events as $event) @endforeach
Student Name Payment Booking Time
{{ $event->student->firstname . ' ' . $event->student->lastname ?? '' }} {{ $event->event->price ?? '' }} {{ date('j M, Y', strtotime($event->created_at)) }}
@endsection @section('style') @endsection @section('script') @endsection