BlackShadow
BlackShadow
FFilament
Created by Rinkesh on 6/22/2024 in #❓┊help
Textarea and select field disabled() issue
Make sure that they are reactive/live, also please don't randomly tag me in issues 😛
18 replies
FFilament
Created by Rinkesh on 6/20/2024 in #❓┊help
SelectFilter with relationship query
try ->whereHas('academic', function(Builder $query) use ($acd_id) {
10 replies
FFilament
Created by Rinkesh on 6/20/2024 in #❓┊help
SelectFilter with relationship query
So what happends when you dd the $acd_id in the closure.
10 replies
FFilament
Created by Rinkesh on 6/20/2024 in #❓┊help
SelectFilter with relationship query
Check the output of $data first.
10 replies
FFilament
Created by aksh on 6/21/2024 in #❓┊help
I used a checkbox in the filter and it has default true.
Your question is a bit odd since you talk about selectedRecords but want to have true as default.
6 replies
FFilament
Created by aksh on 6/21/2024 in #❓┊help
I used a checkbox in the filter and it has default true.
If you only want to show certain records on the table you can modify the table query to do so.
6 replies
FFilament
Created by Jack on 4/30/2024 in #❓┊help
Exports
Just try stuff out and you might find it, im not sure if its meant like that
17 replies
FFilament
Created by Jack on 4/30/2024 in #❓┊help
Exports
🤷‍♂️
17 replies
FFilament
Created by Jack on 4/30/2024 in #❓┊help
Exports
Just read the docs 😛
17 replies
FFilament
Created by Jack on 4/30/2024 in #❓┊help
Exports
17 replies
FFilament
Created by Jack on 4/30/2024 in #❓┊help
Exports
Probably need to look at summarize
17 replies
FFilament
Created by Jack on 4/30/2024 in #❓┊help
Exports
Thats not what export is.
17 replies
FFilament
Created by CerealKiller on 4/17/2024 in #❓┊help
Tabs and Bulk Actions sync
4 replies
FFilament
Created by Wannes on 2/12/2024 in #❓┊help
Get all sortable columns of table
return collect($this->getResourceTableColumns())
->filter(fn ($column) => $column->isSortable());
return collect($this->getResourceTableColumns())
->filter(fn ($column) => $column->isSortable());
9 replies
FFilament
Created by Wannes on 2/12/2024 in #❓┊help
Get all sortable columns of table
$livewire = app('livewire')->new(ListRecords::class);

return BlogResource::table(new Table($livewire))->getColumns();
$livewire = app('livewire')->new(ListRecords::class);

return BlogResource::table(new Table($livewire))->getColumns();
9 replies
FFilament
Created by BlackShadow on 3/11/2024 in #❓┊help
Get all the table columns from a resource
protected function getResourceTableColumns(): array
{
$livewire = app('livewire')->new(ListRecords::class);

return YourResource::table(new Table($livewire))->getColumns();
}
protected function getResourceTableColumns(): array
{
$livewire = app('livewire')->new(ListRecords::class);

return YourResource::table(new Table($livewire))->getColumns();
}
22 replies
FFilament
Created by BlackShadow on 3/11/2024 in #❓┊help
Get all the table columns from a resource
Tried many of these variants can't seem to get it to work 😵‍💫 @dissto also tried a fair bit.
22 replies
FFilament
Created by BlackShadow on 3/11/2024 in #❓┊help
Get all the table columns from a resource
Same
22 replies
FFilament
Created by BlackShadow on 3/11/2024 in #❓┊help
Get all the table columns from a resource
The plugin im working on requires me to get all available data from a table resource so if i cant get that then its game over💀
22 replies