Bruno Pereira
Bruno Pereira
FFilament
Created by aqilmujahidiin on 4/24/2025 in #❓┊help
Cluster in Multiple Panels
In your panel config
return $panel
// ...
->discoverResources(in: app_path('Filament/Resources'), for: 'App\\Filament\\Resources')
->discoverPages(in: app_path('Filament/Pages'), for: 'App\\Filament\\Pages')
->discoverClusters(in: app_path('Filament/Clusters'), for: 'App\\Filament\\Clusters');
return $panel
// ...
->discoverResources(in: app_path('Filament/Resources'), for: 'App\\Filament\\Resources')
->discoverPages(in: app_path('Filament/Pages'), for: 'App\\Filament\\Pages')
->discoverClusters(in: app_path('Filament/Clusters'), for: 'App\\Filament\\Clusters');
change the path of ->discoverCusters
4 replies
FFilament
Created by delboy1978uk on 4/16/2025 in #❓┊help
what is my custom page route?
3 replies
FFilament
Created by JustNoOne on 4/9/2025 in #❓┊help
Define disk in filament ImportAction
one is for laravel and another is for filament
6 replies
FFilament
Created by JustNoOne on 4/9/2025 in #❓┊help
Define disk in filament ImportAction
make sure that in your env file you set FILAMENT_FILESYSTEM_DISK to the external storage
6 replies
FFilament
Created by Marek on 4/8/2025 in #❓┊help
Simple question about nested models with Form
you have to define the field as a relationship if I'm not mistaken
8 replies
FFilament
Created by Marek on 4/8/2025 in #❓┊help
Simple question about nested models with Form
8 replies
FFilament
Created by Marek on 4/8/2025 in #❓┊help
Simple question about nested models with Form
Have you defined the relations in the Model correctly?
8 replies
FFilament
Created by Usurious on 3/29/2025 in #❓┊help
In Form Builder - Relation is failing to save. Presents SQL error.
glad I could help
17 replies
FFilament
Created by Usurious on 3/29/2025 in #❓┊help
In Form Builder - Relation is failing to save. Presents SQL error.
User model has many trips you use hasMany ($this->hasMany(Trip::class)) Trip belongs to a User you use belongsTo ($this->belongsTo(User::class,'host_id'))
17 replies