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

22 lines
414 B
PHP

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