Dhru
Dhru
FFilament
Created by Pritbor on 4/28/2025 in #❓┊help
How to: Action group dropdown grid layout
Ah okay just publish the theme and override the relevant .css A “theme” in filament is just the .css file Since all you are doing is updating the css will not break anything with updates (beyond maybe the styling) https://filamentphp.com/docs/3.x/panels/themes#creating-a-custom-theme
7 replies
FFilament
Created by Pritbor on 4/28/2025 in #❓┊help
How to: Action group dropdown grid layout
the easiest way would be to use a nested dropdown but it wouldn't give you that exact layout. https://filamentphp.com/docs/3.x/actions/grouping-actions not sure if extraattributes works with actiongruops but that would the next step I would try (see if i can achive that with a tailwind class) if not possible with either of those two can extend the actiongroup class and create your own blade view with the layout you want and use an instance of that extenededclass in your project
7 replies
FFilament
Created by Clay Bitner on 4/22/2025 in #❓┊help
FiltersLayout
I haven’t done it, but my guess is you need to extend the filers layout component and create a custom component class / view with a blade template(essentially creating a new livewire component. This tutorial explains how to do that for forms and next one with an info list etc but is the same idea for any of the view components https://filamentphp.com/docs/3.x/forms/layout/custom Another approach if you can do it via pure css is you can publish a theme and edit the .css Finally also just publish the views and directly change the html of the existing component but will break updates / be less maintainable
2 replies
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.
81 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