@extends('frontend.user_dashboard.layouts.app') @section('content')

Booking Request List

@forelse ($property_booking_requests as $key=>$property_booking_request) @empty @endforelse
# Property Detail User Type Token Detail Property Status Action
{{($key+1) + ($property_booking_requests->currentPage() - 1)*$property_booking_requests->perPage()}} Number: {{$property_booking_request->property->property_number}}
Name: {{$property_booking_request->property->name}}
Type: {{ucwords(str_replace('_',' ',$property_booking_request->property->properties_type))}}
Name: {{$property_booking_request->user->name}}
Phone: {{$property_booking_request->user->phone}}
Email: {{$property_booking_request->user->email}}
{{$property_booking_request->token_amount}} {{ucwords(str_replace('_',' ',$property_booking_request->property->booking_status))}} @if($property_booking_request->request_status == 'pending') @else {{ucwords($property_booking_request->request_status)}} @endif

Nothing Found


Showing {{($property_booking_requests->currentpage()-1)*$property_booking_requests->perpage()+1}} to {{(($property_booking_requests->currentpage()-1)*$property_booking_requests->perpage())+$property_booking_requests->count()}} of {{$property_booking_requests->total()}} Booking Requests

{!! $property_booking_requests->links() !!}
@endsection