@extends('admin.layouts.app') @section('title', 'All Rentals Booking') @section('section')

Booking Detail

Booking Detail

{{-- --}} @foreach($all_get_bookings as $all_get_booking) {{-- --}} @endforeach
User Name Email Show Name Capacity StandardUser RequestDetails
{{$all_get_booking->user->first_name ?? ''}} {{$all_get_booking->user->email ?? ''}} {{$all_get_booking->show_name ?? ''}} {{ isset($all_get_booking->rental->capacity) ? number_format($all_get_booking->rental->capacity) : '' }} {{ isset($all_get_booking->rental->price) ? number_format($all_get_booking->rental->price) : '' }}--}} {{-- {{ substr($all_get_booking->user_request, 0, 20) }}--}} {{-- {{ strlen($all_get_booking->user_request) > 100 ? '...' : '' }}--}} {{-- --}} {{-- View Details {{-- --}} {{-- View Details--}} {{-- --}}
@endsection @section('script') @endsection