arif
arif
FFilament
Created by arif on 9/10/2024 in #❓┊help
Pagination Error 'Incorrect syntax near OFFSET' using SQL Server
No description
5 replies
FFilament
Created by arif on 9/9/2024 in #❓┊help
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
detailUser.name
detailUser.name
. Why is this happening? Model User.php
public function userDetail()
{
return $this->hasOne(UserDetail::class, 'user_id', 'id');
}
public function userDetail()
{
return $this->hasOne(UserDetail::class, 'user_id', 'id');
}
Model UserDetail.php
public function user()
{
return $this->belongsTo(User::class, 'user_id', 'id');
}
public function user()
{
return $this->belongsTo(User::class, 'user_id', 'id');
}
4 replies
FFilament
Created by arif on 9/6/2024 in #❓┊help
How to change resource path from /css/ to /pkl/public/?
No description
3 replies
FFilament
Created by arif on 9/5/2024 in #❓┊help
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
FFilament
Created by arif on 6/11/2024 in #❓┊help
Filament Performance Issue: Slow Response Time with SQL Server
No description
6 replies
FFilament
Created by arif on 6/6/2024 in #❓┊help
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
FFilament
Created by arif on 6/5/2024 in #❓┊help
Why is the auth id value null? In Providers??
No description
2 replies
FFilament
Created by arif on 6/5/2024 in #❓┊help
How to delete component filament in Dashboard?
No description
4 replies
FFilament
Created by arif on 6/3/2024 in #❓┊help
Filament Excel Export in Table Header
No description
3 replies
FFilament
Created by arif on 5/30/2024 in #❓┊help
How to display a lot of data (40.000+) into a select dropdown?
No description
7 replies
FFilament
Created by arif on 5/29/2024 in #❓┊help
Filament Shield allows create/edit/delete despite role restrictions. Shouldn't have these permission
No description
7 replies
FFilament
Created by arif on 5/28/2024 in #❓┊help
SQLSTATE[IMSSP]: Field 34 returned no data.
No description
2 replies
FFilament
Created by arif on 5/28/2024 in #❓┊help
Displaying data without an ID or primary key
No description
3 replies