@extends('admin.layout.main') @section('content')

حجز الفنادق

@foreach ($bookings as $section) @if($section->hotel_info && $section->room_info) @endif @endforeach
# الفندق الغرفة تاريخ الحجز تاريخ الوصول تاريخ المغادرة
{{$loop->iteration}} {{$section->hotel_info->title}} {{$section->room_info->name}} {{date('Y-m-d', strtotime($section->created_at))}} {{$section->arr_date}} {{$section->leave_date}}
{{$bookings->links()}}
@endsection