H.Bilbao
H.Bilbao
FFilament
Created by H.Bilbao on 3/25/2024 in #❓┊help
Accessing page table data in the widget
Yes, removing the HasWidgetShield trait from the widget assigned to the page
5 replies
FFilament
Created by H.Bilbao on 4/27/2024 in #❓┊help
Orderable column
I solved it by adding a filter, I always have one active so I can order each event independently
7 replies
FFilament
Created by H.Bilbao on 4/27/2024 in #❓┊help
Orderable column
Sorry, sortable() no, I need reorderable() to order by groups
7 replies
FFilament
Created by H.Bilbao on 4/27/2024 in #❓┊help
Orderable column
I mean sortable. I have a table with the following columns: id, order, event_id, participant_id. And I want something like this: 1 1 1 1 2 2 1 2 3 3 1 3 4 1 2 1 5 2 2 2 6 3 2 3
7 replies
FFilament
Created by H.Bilbao on 3/27/2024 in #❓┊help
Widget chart between table filter date
I don't know if there is a better way to do it, but it works for me.
4 replies
FFilament
Created by H.Bilbao on 3/27/2024 in #❓┊help
Widget chart between table filter date
I just solved it as follows:
$backupMonth = $this->tableFilters['backup_month'];
$month = implode(', ', $backupMonth);

->between(
start: now()->modify($month)->startOfMonth(),
end: now()->modify($month)->endOfMonth(),
)
$backupMonth = $this->tableFilters['backup_month'];
$month = implode(', ', $backupMonth);

->between(
start: now()->modify($month)->startOfMonth(),
end: now()->modify($month)->endOfMonth(),
)
4 replies
FFilament
Created by H.Bilbao on 3/17/2024 in #❓┊help
Question about tables
Finally, once writing everything again I have achieved the necessary result. How could I modify the $month variable from the filter? https://gist.github.com/mendizalea/74a647bc0a92aa702843fbc6678ca2d6
10 replies
FFilament
Created by H.Bilbao on 3/17/2024 in #❓┊help
Question about tables
Thank you for everything but I have reached a point of blockage, I can't find the solution. I'm going to try to redo everything I have, because I have gone through the shared code several times but I can't quite see the result.
10 replies
FFilament
Created by H.Bilbao on 3/17/2024 in #❓┊help
Question about tables
Thanks Dennis. I have reached this point where something is missing me because the result is not correct. Can someone help me see where the error could be? I see the same result on all servers for the day https://gist.github.com/mendizalea/bb103f20f39f7265c29cd6e7cba5c0d6
10 replies
FFilament
Created by H.Bilbao on 3/17/2024 in #❓┊help
Question about tables
No description
10 replies
FFilament
Created by H.Bilbao on 2/24/2024 in #❓┊help
DateTimePicker question
No description
3 replies
FFilament
Created by H.Bilbao on 9/1/2023 in #❓┊help
TextInput datetime with milliseconds
hello, any solution for this? I'm still having the same problem.
6 replies
FFilament
Created by H.Bilbao on 11/6/2023 in #❓┊help
Fill select and select a value with afterStateUpdated
Thanks but not working, same problem
4 replies
FFilament
Created by H.Bilbao on 10/18/2023 in #❓┊help
Many queries when activate the defaultGroup
Does it has any sense that there are so many duplicate queries when grouping?
6 replies
FFilament
Created by H.Bilbao on 10/27/2023 in #❓┊help
Get hiddenOn field value when mutate
😅 And do you know of any workaround that works?
5 replies
FFilament
Created by H.Bilbao on 10/26/2023 in #❓┊help
iconButton problems after update to 3.0.84
Ok, I had just done the tests you told me and nothing, same problem. But whenever I do composer update I have the filament update in post-autoload-dump. With 3.0.86 I see it well again. Thanks Dan
12 replies
FFilament
Created by H.Bilbao on 10/26/2023 in #❓┊help
iconButton problems after update to 3.0.84
No custom theme, only filamentphp theme
12 replies
FFilament
Created by H.Bilbao on 10/26/2023 in #❓┊help
iconButton problems after update to 3.0.84
Has anyone had the same problem? Thank you
12 replies
FFilament
Created by H.Bilbao on 10/18/2023 in #❓┊help
Many queries when activate the defaultGroup
No description
6 replies
FFilament
Created by H.Bilbao on 10/18/2023 in #❓┊help
Many queries when activate the defaultGroup
Resource code: https://gist.github.com/mendizalea/f6b62bcd48bafee8ae95a43ea2d96afd User Model:
public function ownedBy(): BelongsTo
{
return $this->belongsTo(User::class, 'owned_by');
}
public function ownedBy(): BelongsTo
{
return $this->belongsTo(User::class, 'owned_by');
}
6 replies