@extends('admin.print.template')
@section('content')
#
{{ __('messages.Client') }}
{{ __('messages.Show') }}
{{ __('messages.Show Date') }}
{{ __('messages.Hall') }}
كود
المقعد
@foreach ($data as $item)
@foreach ($item->booking_seats as $seat)
{{ $loop->index + 1 }}
@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 }}
{{ $seat->code }}
{{ $seat->seat->row_name }}-{{ $seat->seat->section}}-{{ $seat->seat->seat_num}}
@endforeach
@endforeach
@endsection