@extends('layouts.app') @section('title') {{ __('messages.Bookings') }} @endsection @section('content')
# | {{ __('messages.Client') }} | {{ __('messages.Show') }} | {{ __('messages.Show Date') }} | {{ __('messages.Hall') }} | {{ __('messages.Count Tickets') }} | {{ __('messages.Details') }} | |
---|---|---|---|---|---|---|---|
{{ $skipCount + $i }} | @php $i++ @endphp @if ($item->is_booking_from_admin){{ __('messages.Via the box office') }} ( {{ $item->user->name }} ) | @else{{ $item->user->name }} | @endif{{ $item->show_date->show->name }} | {{ \Carbon\Carbon::parse($item->show_date->date_time)->format('Y-m-d h:i A') }} | {{ $item->show_date->show->hall->name }} | {{ $item->booking_seats_count }} | @can('show_ticket') {{ __('messages.Details') }} @endcan |