sackey e839d40a99
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
Initial commit
2025-07-30 17:15:50 +00:00

27 lines
481 B
PHP

<?php
namespace App\Livewire\Vehicles;
use Livewire\Component;
use App\Models\Vehicle;
class Show extends Component
{
public Vehicle $vehicle;
public function mount(Vehicle $vehicle)
{
$this->vehicle = $vehicle->load([
'customer',
'serviceOrders.assignedTechnician',
'appointments',
'inspections'
]);
}
public function render()
{
return view('livewire.vehicles.show');
}
}