Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 309 Bytes

route-model-binding.md

File metadata and controls

20 lines (16 loc) · 309 Bytes

🗺️ Use Route Model Binding to fetch the model

Example mount:

public function mount(User $user): void
{
    $this->fill($user);
}

❌ Bad:

<livewire:profile :user="auth()->user()" /> 

✔️ Good:

<livewire:profile :user="auth()->user()->uuid" />