@extends('main') @if($seo !== NULL) @section('title', $seo->title) @section('description', $seo->description) @section('keywords', $seo->keywords) @section('author', $seo->author) @else @section('title', 'Fanadek Masr | طلب الحجز') @endif @section('content')
{{csrf_field()}} @if(Session::has('msg'))
{{Session('msg')}}
@endif @if($errors->any())
{{$errors->first()}}
@endif

تفاصيل الحجز


{{$room->name}}
{{$rooms_count}}
@for ($i = 0; $i < $rooms_count; $i++)
{{$people[$i]}}
@endfor
{{$start_date}}
{{$end_date}}
@if($hotel->tax > 0)

السعر قبل الضريبة : $ {{number_format(calculate_room_price($room->id, $people, $rooms_count, $start_date, $end_date, false), 2)}}

الضريبة : {{$hotel->tax}} %

@endif
السعر الاجمالي شامل الخدمة والضريبة : $ {{number_format(calculate_room_price($room->id, $people, $rooms_count, $start_date, $end_date, true), 2)}}

البيانات الشخصية


@endsection