Dhru
Dhru
FFilament
Created by aleronal_ on 4/4/2025 in #❓┊help
Search bar split by comma?
I think you can override the getTableSearchQuery() in the list page
3 replies
FFilament
Created by kagchi on 4/5/2025 in #❓┊help
tabs on relation manager position start, is that possibe?
Actually publishing the theme try the ->extraAttributes method and you can add some tailwind attributes and see if you can align it that way
13 replies
FFilament
Created by kagchi on 4/5/2025 in #❓┊help
tabs on relation manager position start, is that possibe?
Not sure but you can probably do this with just .css don’t need to override the html etc. So just publish a theme look up what the filament identifier is for the tabs And try to align left
13 replies
FFilament
Created by Akki on 4/1/2025 in #❓┊help
Restrict non filament panel user, accessing filament admin panel.
this how i solved a similar problem (changed a few things from my code to remove some extra logi but the basis are first you need to add this to your panel provider (will usually be called adminpanelprovider.php and will be in app/http/providers/filament/ directory in your laravel project)
->authMiddleware([ Authenticate::class, \App\Http\Middleware\VerifyAccessStatus::class, ]);
Then create the logic for this class
namespace App\Http\Middleware; use Closure; use Illuminate\Http\Request; use Symfony\Component\HttpFoundation\Response; class VerifyAccessStatus { public function handle(Request $request, Closure $next): Response { // logic goes here // if admin etc. //return redirect()->route // return $next($request); } }
8 replies
FFilament
Created by Phuc Le on 3/31/2024 in #❓┊help
Multi tenancy with multiple database support
So basically if OP uses something like aws and temp urls that should work right ?
71 replies
FFilament
Created by Patrick Stephan on 3/19/2025 in #❓┊help
Cannot upload files to Laravel Cloud Bucket
Does it work if you chain a method like to the form… ->disk(‘cloud’) The issue is the config of your disks probably
7 replies
FFilament
Created by ashfall on 3/19/2025 in #❓┊help
Find plugins that help edit data directly on the table
3 replies
FFilament
Created by Resonance on 3/17/2025 in #❓┊help
Logout Route
https://filamentphp.com/content/tim-wassenburg-how-to-customize-logout-redirect here is a tutorial for your exact problem, I just implemented it and it works fine for me
9 replies
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
i had the same issue This is not a good fit for the docs, but I would love to see one of the content creators make a tier list of filament customization options ranked in terms of effort it takes. maybe one for tables, one for forms etc.
69 replies
FFilament
Created by Mike Peters on 2/15/2025 in #❓┊help
Select->multiple() in SelectColumn?
Nicely done! Thanks for sharing the update
10 replies
FFilament
Created by Mike Peters on 2/15/2025 in #❓┊help
Select->multiple() in SelectColumn?
Depending on your use case look into BulkActions perhaps
10 replies
FFilament
Created by H.Bilbao on 2/16/2025 in #❓┊help
Textcolumn description text size
You can add use ->extraAtrributes() And add whatever tailwind classes you want to style the text
7 replies
FFilament
Created by Grégoire on 2/13/2025 in #❓┊help
Optimizing file upload for large files avoid slow move on save
8 replies
FFilament
Created by jamespickard on 2/12/2025 in #❓┊help
Filament Form + Livewire: Updating Field Without Saving to Database
maybe something like... Action::make('example') ->label('Generate Example") ->action(function ($livewire) { $form = $livewire->form->getState(); $form["example"] = "example text"; $livewire->form->fill($form); }),
6 replies
FFilament
Created by Renssus on 2/12/2025 in #❓┊help
getting an istall error
run something like composer why-not illuminate/console 10.0.0 to see what package is causing the issue
9 replies
FFilament
Created by Dave2084 on 1/28/2025 in #❓┊help
Automatic Sum of Selected Bulk Action item column
I think there are a basic of issues beyond stuff that requires data back and forth via livewire with the bulk actions that I outlined in a discussion here https://github.com/filamentphp/filament/discussions/15576 Didn't seem to be much interest. But let me review the contribution guidelines and see if I can make a PR
8 replies
FFilament
Created by Dave2084 on 1/28/2025 in #❓┊help
Automatic Sum of Selected Bulk Action item column
The bulk actions stuff is a weak spot in filament tables imo. Lacking in customization ability I have resorted to using recordClasses to set a custom cas class for the rows and then JavaScript to update stuff.
8 replies
FFilament
Created by Erfan Ebrahimi on 2/8/2025 in #❓┊help
auto select records in table when table loaded
I have a similar problem let me know if you find a solution
3 replies
FFilament
Created by Dhru on 2/10/2025 in #❓┊help
Is there a way to select a row by clicking it in a resource?
found this while searching around https://www.answeroverflow.com/m/1279979368168296610 seems quite hacky though not sure if there is a better solution
3 replies
FFilament
Created by martinroux. on 2/10/2025 in #❓┊help
Delete a resource icon.
i think has to do with some plugin you are using one thing you can try is make a blank .svg file and use a custom icon as follows https://filamentphp.com/docs/3.x/support/icons
13 replies