Lietze
Lietze
FFilament
Created by Lietze on 6/7/2024 in #❓┊help
Changes update toggleable columns
yeah just realized, sorry about that!
6 replies
FFilament
Created by Lietze on 6/7/2024 in #❓┊help
Changes update toggleable columns
https://filamentphp.com/plugins/kenneth-sese-advanced-tables?v=v3#disabling-column-reordering for anyone wondering testing this in a bit, gone from my pc atm
6 replies
FFilament
Created by Lietze on 6/7/2024 in #❓┊help
Changes update toggleable columns
might actually be the archilex advanced filters plugin... looking at the docs
6 replies
FFilament
Created by Lietze on 4/3/2024 in #❓┊help
Fill Select on relationmanager creation form
This is already done automatically by filament, just remove the select field entirely 😅
3 replies
FFilament
Created by Anderson Belderrama on 10/2/2023 in #❓┊help
Remove Grid from Pie/Doughnut(chart-widget)
lifesaver!
3 replies
FFilament
Created by Lietze on 12/21/2023 in #❓┊help
How to find the current query of the list page?
oh that's great! Will remember that one for next time 😄 TY!
5 replies
FFilament
Created by Lietze on 12/21/2023 in #❓┊help
How to find the current query of the list page?
For people wondering, I found a solution the non-filament way: Added to boot() in AppServiceProvider.php:
\Event::listen('Illuminate\Database\Events\QueryExecuted', function ($query) {
logger([$query->sql, $query->bindings, $query->time]);
});
\Event::listen('Illuminate\Database\Events\QueryExecuted', function ($query) {
logger([$query->sql, $query->bindings, $query->time]);
});
You can find all queries per page logged in the laravel log files
5 replies
FFilament
Created by Hanai on 12/19/2023 in #❓┊help
can’t make user yo my admin panel
lol
34 replies
FFilament
Created by Hanai on 12/19/2023 in #❓┊help
can’t make user yo my admin panel
code/errors
34 replies
FFilament
Created by Hanai on 12/19/2023 in #❓┊help
can’t make user yo my admin panel
please show what is going wrong
34 replies
FFilament
Created by Hanai on 12/19/2023 in #❓┊help
can’t make user yo my admin panel
many options for your problem, but i'm not entirely sure what you're looking for
34 replies
FFilament
Created by Hanai on 12/19/2023 in #❓┊help
can’t make user yo my admin panel
php artisan make:filament-user
34 replies
FFilament
Created by Hanai on 12/19/2023 in #❓┊help
can’t make user yo my admin panel
User::whereId($userId)->update(['password', bcrypt('password')])
User::whereId($userId)->update(['password', bcrypt('password')])
34 replies
FFilament
Created by Hanai on 12/19/2023 in #❓┊help
can’t make user yo my admin panel
try setting the password from a seeder, using the bcrypt method
34 replies
FFilament
Created by Lietze on 12/18/2023 in #❓┊help
filter form - reset filter A when filter B is some value
(also changed the 'true' to an actual boolean true, not sure why i had that in the first place lol)
3 replies
FFilament
Created by Lietze on 12/18/2023 in #❓┊help
filter form - reset filter A when filter B is some value
Solution: on the first select "has_lab_report", add this:
->live()
->afterStateUpdated(fn ($state, Set $set) => $state !== '1' ? $set('results', []) : null),
->live()
->afterStateUpdated(fn ($state, Set $set) => $state !== '1' ? $set('results', []) : null),
3 replies
FFilament
Created by ba_mbi_07 on 12/18/2023 in #❓┊help
can we add job when uploading large size files in file upload
@Alnuaimi I'm not fully understanding your question, but could you create your own post? others can help you that way and this thread will stay organized 🙂
27 replies
FFilament
Created by ba_mbi_07 on 12/18/2023 in #❓┊help
can we add job when uploading large size files in file upload
but could you show us the dd() output?
27 replies
FFilament
Created by ba_mbi_07 on 12/18/2023 in #❓┊help
can we add job when uploading large size files in file upload
dd = Dump and Die, basically a prettier, more readable output that just echoing
27 replies
FFilament
Created by ba_mbi_07 on 12/18/2023 in #❓┊help
can we add job when uploading large size files in file upload
tip: use the dd() function instead of echo, print_r and die()
27 replies