@php $room = []; $rooms = $hotel['hotel_room']; for ($i = 0; $i < count($rooms); $i++) { if ($rooms[$i]['room']==$person['room_type']) { $room=$rooms[$i]; break; } } @endphp @extends('user.components.layout') @push('css') @endpush @section('main') @include('user.components.book_opts')
@csrf
Hotel Details
{{ $hotel['hotel_name'] }}

{{ $hotel['hotel_address'] }}

@endsection @push('js') @includeIf('user.components.razorPay', ['order' => $order, 'redirect' => url('special-hotel/ticket')]) @endpush