Luiz
Luiz
FFilament
Created by Luiz on 4/25/2025 in #❓┊help
ListCategoryPage stuck on Product model instead of Category
I created a new resource and hid it from the navigation menu. It wasn't what I wanted but I had no other way.
11 replies
FFilament
Created by Luiz on 4/25/2025 in #❓┊help
ListCategoryPage stuck on Product model instead of Category
and about the create and edit form?
11 replies
FFilament
Created by Luiz on 4/25/2025 in #❓┊help
ListCategoryPage stuck on Product model instead of Category
the same as ListProduct. However, I try to change the model in getModel() or in $model and it continues to use the resource model.
11 replies
FFilament
Created by Luiz on 4/25/2025 in #❓┊help
ListCategoryPage stuck on Product model instead of Category
but the category list is not related to a specific product.
11 replies
FFilament
Created by Luiz on 3/7/2025 in #❓┊help
TextFilter
To help anyone who needs it, I managed to create the TextFilter class. Now it's much easier to use the filter with a TextInput field. https://github.com/lpcs007/filamentphp3-TextFilter
5 replies
FFilament
Created by Luiz on 3/7/2025 in #❓┊help
badge in global search
label I got with
$record->status->getLabel()
$record->status->getLabel()
but and about color and badge?
3 replies
FFilament
Created by Chris Arter on 12/17/2024 in #❓┊help
Stumped on file handling files with Forms + Spatie Media on Custom Page
I'm in the same situation as you. Did you find any solution?
4 replies
FFilament
Created by Luiz on 1/4/2025 in #❓┊help
Problem with Admin Panel Authentication - 403 Forbidden on Production
I had actually included the canAccessPanel function, but I had forgotten to also include the FilamentUser. Thank you
5 replies
FFilament
Created by GHOST-117 on 8/1/2023 in #❓┊help
Unique with soft delete
I know this post is old, but just to save a solution:
$table->index('columnNameUnique');
$table->unique(['columnNameUnique', 'deleted_at']);
$table->index('columnNameUnique');
$table->unique(['columnNameUnique', 'deleted_at']);
->unique(
ignoreRecord: true,
modifyRuleUsing: function (Unique $rule) {
return $rule->whereNull('deleted_at');
}
)
->unique(
ignoreRecord: true,
modifyRuleUsing: function (Unique $rule) {
return $rule->whereNull('deleted_at');
}
)
4 replies
FFilament
Created by Yurikaso on 11/8/2024 in #❓┊help
Separate Sessions for User and Admin Portals
Did you find the solution?
4 replies
FFilament
Created by Luiz on 10/31/2024 in #❓┊help
Subnavigation position in blade
up
3 replies
FFilament
Created by jlove1672 on 5/2/2024 in #❓┊help
Do text inputs have a clear input option
and I need the opposite, I need to remove the X to avoid clearing the select when it is searchable. Any ideas?
8 replies
FFilament
Created by Luiz on 7/26/2024 in #❓┊help
image upload using URL
that worked great! Now I need reload the SpatieMediaLibraryFileUpload because I need refresh the page to see the image. Do you know how do this?
11 replies
FFilament
Created by Luiz on 7/1/2024 in #❓┊help
Spatie Media Library records media but does not display it.
The interesting thing is that if I start a new project and install only filament and spatie-laravel-media-library-plugin everything works fine. But then I finished installing the packages I need and created the resources I need and then it stopped working again. It seems to be incompatibility with some package or something.
25 replies
FFilament
Created by Luiz on 7/1/2024 in #❓┊help
Spatie Media Library records media but does not display it.
Where can I find the asset url?
25 replies
FFilament
Created by Luiz on 7/1/2024 in #❓┊help
Spatie Media Library records media but does not display it.
I tried with http://localhost and http://localhost:8000 and in the published project I tried using the site's https url and the problem is the same.
25 replies
FFilament
Created by Luiz on 7/1/2024 in #❓┊help
Spatie Media Library records media but does not display it.
I created a new laravel installation and tested it and everything worked fine. Thank you for your help.
25 replies
FFilament
Created by Luiz on 7/1/2024 in #❓┊help
Spatie Media Library records media but does not display it.
I updated all the packages and I'm still having the same problem. I even removed the vendor and node_modules folder and reinstalled everything, cleared cache, etc.
25 replies
FFilament
Created by Luiz on 7/1/2024 in #❓┊help
Spatie Media Library records media but does not display it.
I'll check. thanks
25 replies