Arnold Schwarzenegger
Arnold Schwarzenegger
FFilament
Created by aldec on 3/18/2025 in #❓┊help
Opening modals on page visit
5 replies
FFilament
Created by Shaung Bhone on 3/16/2025 in #❓┊help
Spatie Media collections are not working in CategoryResource
It's in the docs. If you want to save to a specific folder, either create a different disk in filesystems.php and use that (eg
'category' => [
'driver' => 'local',
'root' => storage_path('app/public/category'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
'throw' => false,
],
'category' => [
'driver' => 'local',
'root' => storage_path('app/public/category'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
'throw' => false,
],
or do as I said above and use a custom path generator (I don't have an example for that at hand sorry)
8 replies
FFilament
Created by Shaung Bhone on 3/16/2025 in #❓┊help
Spatie Media collections are not working in CategoryResource
Unless something has changer recently, that's not how collections work - all they do is group media records.
8 replies
FFilament
Created by Shaung Bhone on 3/16/2025 in #❓┊help
Spatie Media collections are not working in CategoryResource
Collections and paths are different things. To change the generated path, you need to create a custom PathGenerator https://spatie.be/docs/laravel-medialibrary/v11/advanced-usage/using-a-custom-directory-structure
8 replies
FFilament
Created by Arnold Schwarzenegger on 3/1/2025 in #❓┊help
Enum is cast when creating but not editing
Yeap, I only added to cover all cases. Anyway, it looks like it's just how filament works, so I'll handle it as a string
11 replies
FFilament
Created by Arnold Schwarzenegger on 3/1/2025 in #❓┊help
Enum is cast when creating but not editing
Not sure what you mean, I already have both in the example 🤔 I think it's the ->default(ConfigType::MAPPER) part that messes it up but I believed that's how it should work.
11 replies
FFilament
Created by zydnrbrn on 1/14/2024 in #❓┊help
Adding headingActions on infolist livewire
Do you need the Actions::make() part? Can't you just pass the actions in the array? Like this
->getHeaderActions([
Actions\Action::make('Download'),
])
->getHeaderActions([
Actions\Action::make('Download'),
])
6 replies
FFilament
Created by fabiocherici0001 on 11/13/2023 in #❓┊help
use with the already existing user table
6 replies
FFilament
Created by Qu on 11/13/2023 in #❓┊help
Searching in big database results in timeout
Out of curiosity, how many rows are we talking about here?
18 replies
FFilament
Created by Qu on 11/13/2023 in #❓┊help
Searching in big database results in timeout
You don't need debugbar if you're familiar with other ways of profiling your app's queries
18 replies
FFilament
Created by Qu on 11/13/2023 in #❓┊help
Searching in big database results in timeout
Hmm this can be a lot of things 1) Install Laravel debugbar to see which query is actually the slowest. It might be that you're running into a n+1 issue 2) Disable pagination on the table to see if it helps 3) Relevant to the 1st point, check pre-load any relationships you might be using
18 replies
FFilament
Created by Sarthak Garg on 11/12/2023 in #❓┊help
advanced form
Something like this might help https://filamentphp.com/docs/3.x/forms/advanced#injecting-the-state-of-another-field There are other example in that page that you can use, depending on what you're trying to do
3 replies
FFilament
Created by Oddman on 11/12/2023 in #❓┊help
Is the Split component for tables busted?
If you have a Split::make without a from I think it will keep it in one row
18 replies
FFilament
Created by Oddman on 11/12/2023 in #❓┊help
Is the Split component for tables busted?
You can have nested splits, keep things in one row if you want
18 replies
FFilament
Created by Oddman on 11/12/2023 in #❓┊help
Is the Split component for tables busted?
This is how I use it and it seams to work
columns([
Split::make([ ... ])
->from('md')
])
columns([
Split::make([ ... ])
->from('md')
])
18 replies
FFilament
Created by Oddman on 11/12/2023 in #❓┊help
Is the Split component for tables busted?
hmm maybe a `from('md') on the entire split?
18 replies
FFilament
Created by Oddman on 11/12/2023 in #❓┊help
Is the Split component for tables busted?
Sorry maybe I copy/pasted something wrong, but try to wrap the entire columns definition in a Split
18 replies
FFilament
Created by Oddman on 11/12/2023 in #❓┊help
Is the Split component for tables busted?
Try this
->columns(
Tables\Columns\Layout\Split::make([
TextColumn::make('id')->sortable(),
CuratorColumn::make('heroImage')->size(40),
Tables\Columns\Layout\Split::make([
TextColumn::make('title')->searchable(),
TextColumn::make('category.title')->color('gray'),
])->from('md'),
self::iconColumn('early_access'),
self::iconColumn('pro_series'),
])
)
->columns(
Tables\Columns\Layout\Split::make([
TextColumn::make('id')->sortable(),
CuratorColumn::make('heroImage')->size(40),
Tables\Columns\Layout\Split::make([
TextColumn::make('title')->searchable(),
TextColumn::make('category.title')->color('gray'),
])->from('md'),
self::iconColumn('early_access'),
self::iconColumn('pro_series'),
])
)
18 replies