Stfn
Stfn
FFilament
Created by Stfn on 8/30/2024 in #❓┊help
Headeraction bug? Or am i stupid
Bump
3 replies
FFilament
Created by atabegruslan on 8/29/2024 in #❓┊help
1 Select input depends on another Select input's value. Select's options populated by DB table's col
Hmm im not 100% sure, but i think this might be helpful for you.. i usually do something like this:
Forms\Components\Select::make('merchant_id')
->label('Merchant')
->searchable()
->options(
Merchant::all()->pluck('name', 'id')->toArray()
)
Forms\Components\Select::make('merchant_id')
->label('Merchant')
->searchable()
->options(
Merchant::all()->pluck('name', 'id')->toArray()
)
Where it plucks the data from the DB, but i'm not 100% on how you set it to the value
7 replies
FFilament
Created by Stfn on 1/2/2024 in #❓┊help
DeleteAction, delete items in public/storage?
Awesome! Thanks! im quite new to PHP, so thanks for nudging me in the right direction (Y)
17 replies
FFilament
Created by Stfn on 1/2/2024 in #❓┊help
DeleteAction, delete items in public/storage?
I will look into it, Thank you!
17 replies
FFilament
Created by yassions101 on 10/9/2023 in #❓┊help
php artisan filament:install --panels ERROR Command "filament:install" is not defined.
Did you get any error messages when running
composer require filament/filament:"^3.0" -W before filament:install
composer require filament/filament:"^3.0" -W before filament:install
10 replies