@php $trip = \App\Models\Trip\Trip::where('driver_id', $data->id)->where('status', 'pending')->whereDate('start_date', '>', now())->orderBy('start_date', 'asc')->first(); @endphp @if ($trip) {{ $trip->reference }} | {{ $trip->start_date }} @endif