arif
How to Display Related Model Data on the Edit Page?
I have two models: User and DetailUser. I want to display the name from DetailUser on the edit page. However, I'm unable to display it using . Why is this happening?
Model User.php
Model UserDetail.php
4 replies
Adding "pkl" Prefix to Admin and User Panel URLs in Laravel 11 with Filament 3
I am currently working on a Laravel 11 project using Filament 3. Right now, my website has admin and user panels, where the URLs are structured like this:
url.com/admin
url.com/user
I would like to add a "pkl" prefix to these URLs so that they become:
url.com/pkl/admin
url.com/pkl/user
How can I achieve this?
3 replies
How to Create a Livewire List Table with Filament's Default Design
I'm building a Livewire component to display a list/table to reduce loading times when dealing with 40,000 records. However, I'd like to avoid creating a custom design for the Livewire table and instead reuse the default list table template from Filament. Is there a way to achieve this?
3 replies