@include('user.partials.sidebar')
@if(count($data['bookingdata']) > 0)
@foreach($data['bookingdata'] as $val)
@endforeach
@else
@endif
{{__('Booking List')}}
@if($val->booking_status_label == 'Customer Cancelled' || $val->booking_status_label == 'Provider Cancelled' )
@elseif($val->booking_status_label == 'Completed')
@elseif($val->booking_status_label == 'Open')
@elseif($val->booking_status_label == 'User Cancelled')
@elseif($val->booking_status_label == 'Order Completed')
@if(is_null($val->payment_type))
@else
@if ($val->review)
{{__('View Order')}}
@else
@endif
@endif
@endif
{{__('No Bookings Available')}}
{{ $data['bookingdata']->links('pagination::bootstrap-4') }}