@extends('web.layouts.container') @section('content')

{{__('reservations.bill_summary')}}

{{__('reservations.edit')}}
@foreach($reservation->re_days['days'] as $key => $reDay) @endforeach @if(count($services)) @foreach($services as $service) @endforeach @endif
{{__('reservations.description')}} {{__('reservations.quantity')}} {{__('reservations.unit_price')}} {{__('reservations.price_before_discount')}} {{__('reservations.price_after_discount')}}
{{dateInfo($reDay, ['day_name' => true])}} {{__('reservations.corresponding_to')}} {{'('.dateInfo($reDay, ['format' => 'd / m / Y']).')'}} @if($reservation->re_days['percentage'][$key]) {{__('reservations.discount')}} {{$reservation->re_days['percentage'][$key]}}% @endif 1 {{$reservation->booking_amount_per_day ?? $reservation->booking_amount_per_person}} {{__('reservations.sar')}} {{$reservation->booking_amount_per_day ?? $reservation->booking_amount_per_person}} {{__('reservations.sar')}} @if($reservation->booking_amount_per_day) {{$reservation->booking_amount_per_day - (($reservation->booking_amount_per_day*$reservation->re_days['percentage'][$key])/100)}} @endif @if($reservation->booking_amount_per_person) {{$reservation->booking_amount_per_person - (($reservation->booking_amount_per_person*$reservation->re_days['percentage'][$key])/100)}} @endif {{__('reservations.sar')}}
{{__('reservations.services')}} {{$service['name']}} 1 400 ريال 390 ريال
{{__('reservations.added_services')}} وجبات خفيفة 40 100 ريال 400 ريال 390 ريال
{{__('reservations.total_before_tax')}} 390 ريال
{{__('reservations.added_value_amount')}} {{$addedValue}} %
{{__('reservations.total_after_tax')}} 450 ريال
{{__('reservations.site_percentage')}} {{$sitePercentage}} %
{{-- Payment block--}} @if($hall->reservation_way == 'direct' || $reservation->re_status == 'waiting_for_pay')

{{__('reservations.pay')}}

@else
@endif
@endsection @section('inner_js') @endsection