@extends('layouts.app') @section('title') {{ __('messages.Booking') }} @endsection @section('style') @endsection @section('content')
@include('inc.breadcrumb', [ 'breadcrumb_items' => [ __('messages.Home') => route('home'), __('messages.Shows') => route('admin.shows.index'), $show_date->show->name => route('admin.shows.show', $show_date->show->id), __('messages.Booking') => 'active', ], ])
حجز فى تاريخ {{ \Carbon\Carbon::parse($show_date->date_time)->format('Y-m-d') }} الساعه {{ \Carbon\Carbon::parse($show_date->date_time)->format('h:i A') }} فئة ال {{ $group->name }}
@csrf
{{-- --}} {{--
يتم اضافة {{ $show_taxes }} % ضرائب
--}}
الاجمالى : LE
@foreach ($seats_all as $key => $val)
{{ $key }}
@foreach ($val->groupBy('section') as $sub_key => $sub_val)
{{ $key }} - {{ $sub_key }}
@foreach ($sub_val as $item)
@if (in_array($item->id, $seats_allow_cancel)) @endif
id, $seats_remove)) style="background: #6c4b4b;" @endif>
@endforeach
@endforeach
@endforeach
@endsection @section('script') @include('admin.bookings.inc.script_price_invoice') @include('admin.bookings.inc.script_submit_invoice') @endsection