christmex
christmex
FFilament
Created by christmex on 11/7/2024 in #❓┊help
GreeterPlugin by orion doenst work in production mode
thank you!
6 replies
FFilament
Created by christmex on 11/7/2024 in #❓┊help
GreeterPlugin by orion doenst work in production mode
thank you so much, for the help, it works, can i know what happen?
6 replies
FFilament
Created by Fravi on 10/27/2024 in #❓┊help
Permission on Relation Manager
you can create policy based on the relation manager model
20 replies
FFilament
Created by Fravi on 10/27/2024 in #❓┊help
Permission on Relation Manager
sorry but can u please make more explanation on wht are u want to achieve
20 replies
FFilament
Created by devpoolxx on 9/2/2024 in #❓┊help
Filament table builder using union query
see what is the model return, and you can choose which column you want
7 replies
FFilament
Created by devpoolxx on 9/2/2024 in #❓┊help
Filament table builder using union query
7 replies
FFilament
Created by Konaś on 9/1/2024 in #❓┊help
filament v3 assets not loading on production
Add
ASSET_URL=public
ASSET_URL=public
in your .env file and run
php artisan config:cache
php artisan config:cache
7 replies
FFilament
Created by monzer on 9/1/2024 in #❓┊help
how to hide table records until a filter is applied?
sure, dont forget to make this question as solved
12 replies
FFilament
Created by monzer on 9/1/2024 in #❓┊help
how to hide table records until a filter is applied?
i hope you get the idea
12 replies
FFilament
Created by monzer on 9/1/2024 in #❓┊help
how to hide table records until a filter is applied?
then i return the query if they filter the table
12 replies
FFilament
Created by monzer on 9/1/2024 in #❓┊help
how to hide table records until a filter is applied?
the logic is, you check if the user did set the filter, then return something that doesnt have record, in my case i return where id 0, which is nothing
12 replies
FFilament
Created by monzer on 9/1/2024 in #❓┊help
how to hide table records until a filter is applied?
you can dd the $livewire->tableFilters, to use your own filter
12 replies
FFilament
Created by monzer on 9/1/2024 in #❓┊help
how to hide table records until a filter is applied?
i did sth like that
12 replies
FFilament
Created by monzer on 9/1/2024 in #❓┊help
how to hide table records until a filter is applied?
->modifyQueryUsing(function(Builder $query, $livewire){
if(!empty($livewire->tableFilters)){
if(
!empty($livewire->tableFilters['some_filter']['some_filter'])
){
return $query;
}
return $query->where('id',0);
}
})
->modifyQueryUsing(function(Builder $query, $livewire){
if(!empty($livewire->tableFilters)){
if(
!empty($livewire->tableFilters['some_filter']['some_filter'])
){
return $query;
}
return $query->where('id',0);
}
})
12 replies
FFilament
Created by KingNii on 8/22/2024 in #❓┊help
Select form is returning null when I make it searchable
if yes, maybe you can try to add optionlimit? set it maybe 10?
11 replies
FFilament
Created by KingNii on 8/22/2024 in #❓┊help
Select form is returning null when I make it searchable
when u dd() is the data exist?
11 replies
FFilament
Created by David | Fortune Validator on 7/20/2024 in #❓┊help
unsavedChangesAlert() - can this work on non panel. eg a filament form on a livewire component ?
i think that comes with filament panel so it wont work outside? i guess haha, cuz like the documentation put that thing in their panel docs so in simple logic that only work in filament panel
4 replies
FFilament
Created by Aya Alghadban on 7/20/2024 in #❓┊help
customize home page
what do you mean homepage? is it dashboard?
5 replies
FFilament
Created by kitkat on 7/20/2024 in #❓┊help
Can Filament Upload a Video?
wht about tht?
7 replies
FFilament
Created by kitkat on 7/20/2024 in #❓┊help
Can Filament Upload a Video?
7 replies