@extends('welcome') @section('title','Overlapped Requests') @section('content-header','Sorry,There is an overlapping between the entered request time and others ') @section('content-breadcrumb') @endsection @section('content')
@include('dashboard.messages')

Your booking request time is overlapping with below requests, select a new time

From: {{$enteredRequest->from}}
To: {{$enteredRequest->to}}

Your request is overlapped with below requests

@if(count($requests) > 0) @foreach($requests as $request) @endforeach
User Phone From To Cost Capacity Booking Time Status
@if($user) {{ucfirst($user->name)}}
  • @if($user->image) {{$user->name}} @else {{$user->name}} @endif
@else --- @endif
@if($request->user_phone) {{$request->user_phone}} @else Not Exist @endif {{$request->from}} {{$request->to}} {{$request->cost}} {{$request->capacity}} {{$request->created_at}} {{$request->status}} @if($request->status !== 'expired') @if($request->status === 'verified') Close @endif @endif @if($request->user_id) Send Email @endif

{{$asset->type}}

{{$asset->created_at}}

Price: {{$asset->price}} {{$asset->currency}}
Price Period: {{$asset->pricePeriodType}}
Capacity: {{$asset->capacity}} Members

{{htmlspecialchars(trim($asset->description))}}

@if($asset->image)
@endif
@endif
@endsection @push('scripts') @endpush