@extends('provider.layout.base') @section('title', 'UpComing Trips ') @section('content')

@lang('driver.upcoming_trips')


@if($fully->count() > 0) @foreach($fully as $each) @endforeach
Booking ID @lang('driver.pickup_time') @lang('driver.pickup_address') Drop Address @lang('driver.status')
{{$each->booking_id}} @if($each->schedule_at !=null) {{ $each->schedule_at }} @else {{ $each->assigned_at }} @endif {{$each->s_address}} {{$each->d_address}} {{$each->status}}
@else

No trips Available

@endif
@endsection