email)->first(); $vehicles = collect(); if ($customer) { $vehicles = Vehicle::where('customer_id', $customer->id) ->withCount(['jobCards', 'appointments']) ->orderBy('created_at', 'desc') ->get(); } return view('livewire.customer-portal.vehicles', compact('vehicles')) ->layout('layouts.customer-portal-app'); } }