@extends('backend.layouts.main') @section('title', 'Booking List') @section('main-container')
@if(session()->has('success'))
{{ session('success') }}
@endif @if(session()->has('error'))
{{ session('error') }}
@endif
Booking List
@foreach ($tickets as $key=> $value) @endforeach
# Ref-Id User Booking Type Pass/Guests Booking Status Total Payment Booking Date Action
{{$key+1}} {{$value['ref_code']}} {{$value['user']['name']}} {{$value['booking_type']}} {{$value['number_of_guests']}} {{$value->status}} {{$value['price'] .' - '.$value['currency']}} {{ $value['created_at']->format('M-d-Y h:i a') }}
@endsection