Lara Zeus
Lara Zeus
FFilament
Created by Fayne on 4/1/2025 in #❓┊help
What's the correct approach to load filament styles in a frontend page?
I always forget the presets: [preset], part 🙂
4 replies
FFilament
Created by Fayne on 4/1/2025 in #❓┊help
What's the correct approach to load filament styles in a frontend page?
4 replies
FFilament
Created by Arlyzatun on 3/31/2025 in #❓┊help
Unable to locate file in Vite manifest: resources/css/filament/admin/theme.css.
correct, check the manifest.json file inside it and make sure the paths exists
6 replies
FFilament
Created by Cornelius on 3/30/2025 in #❓┊help
how to create a table composed of more than one model
3 replies
FFilament
Created by Arlyzatun on 3/31/2025 in #❓┊help
Unable to locate file in Vite manifest: resources/css/filament/admin/theme.css.
you will need to run npm run build in you production/staging server since the folder build is ignored and wont pushed to git
6 replies
FFilament
Created by Renan on 3/28/2025 in #❓┊help
How to display a file uploaded in a previous step in a Filament wizard form (before submission)?
can you share some code so we can understand more what are you trying to do. in the final step of the wizard how you want to display the uploaded file?
11 replies
FFilament
Created by Renan on 3/28/2025 in #❓┊help
How to display a file uploaded in a previous step in a Filament wizard form (before submission)?
did you try $get('file')
11 replies
FFilament
Created by Veur on 3/28/2025 in #❓┊help
Edit Choices.js configuration
this an old artical but you can adjust it to make work with v3 https://v2.filamentphp.com/tricks/render-html-in-select-options combine getSearchResultsUsing and getOptionLabelUsing
6 replies
FFilament
Created by justhammin on 3/28/2025 in #❓┊help
Is there a way to remove the theme switcher and just have dark mode?
its working with ->defaultThemeMode(ThemeMode::Dark) you amy need to clear the storage data?
10 replies
FFilament
Created by justhammin on 3/28/2025 in #❓┊help
Is there a way to remove the theme switcher and just have dark mode?
this will force dark mode: https://filamentphp.com/docs/3.x/panels/themes#changing-the-default-theme-mode but not sure about removing the switcher form the menu
10 replies
FFilament
Created by pelmer on 3/26/2025 in #❓┊help
Trigger state format when reciving new state from afterStateUpdated with $set from another field?
its should be possible, try adding live to price?
8 replies
FFilament
Created by Mark Chaney on 3/24/2025 in #❓┊help
Default Resource Index instead of Dashboard for Panel?
this could be done, but need test 🙂 set the slug in the ListUsers
protected static ?string $slug = '/';
protected static ?string $slug = '/';
and disable the pages in the panel provider and add your class:
->pages([
//Pages\Dashboard::class,
UserResource\Pages\ListUsers::class
])
->pages([
//Pages\Dashboard::class,
UserResource\Pages\ListUsers::class
])
8 replies
FFilament
Created by Rejev on 3/24/2025 in #❓┊help
Float function creates an column where the datatype is double
They both represent floating point numbers. A FLOAT is for single-precision, while a DOUBLE is for double-precision numbers. if you want to change the precision, pass it as a second param
$table->float('WP_A_L1',precision: 7)->nullable();
$table->float('WP_A_L1',precision: 7)->nullable();
note that this is laravel related, for more https://laravel.com/docs/master/migrations#column-method-float
3 replies
FFilament
Created by Alex'R on 3/20/2025 in #❓┊help
How can I use Filament Spatie Translatable with SEO Filament ?
are you using it with SEO::make()? I dont think it will works here is a demo code on how to add SEO to any resource, just normal schema https://github.com/lara-zeus/translatable-demo/blob/a053d0e967691cd4c0990d9288c5aa88b9bf8442/app/Providers/OverridesProvider.php#L58 and its working with spatie translatable also you can switch to use my fork: https://github.com/lara-zeus/translatable
3 replies
FFilament
Created by mohdaftab on 3/14/2025 in #❓┊help
sortable() resets the sorting on 3rd click
I dont think this is an issue, the third click is to reset the sorting for this column if the user want to sort by other column, its in the demo too https://demo.filamentphp.com/shop/products/products
11 replies
FFilament
Created by hirumina on 7/19/2024 in #❓┊help
Issue with FilamentSpatieTranslatable plugin LocaleSwitcher not saving record after v 3 upgrade
11 replies
FFilament
Created by hirumina on 7/19/2024 in #❓┊help
Issue with FilamentSpatieTranslatable plugin LocaleSwitcher not saving record after v 3 upgrade
yes your way is the same I used here you can get the active local from: $livewire->activeLocale https://github.com/lara-zeus/sky/pull/227/files I will create a rule and include it in the translatable plugin so it can be re used
11 replies
FFilament
Created by holiq on 3/11/2025 in #❓┊help
spatie translatable on custom page
can you try using my fork of the plugin: https://github.com/lara-zeus/translatable I would appreciate if you can share some code that I can copy to test
12 replies
FFilament
Created by holiq on 3/11/2025 in #❓┊help
spatie translatable on custom page
I'll try to look into it later, for now you can use any translatable field like https://filamentphp.com/plugins/abdulmajeed-jamaan-translatable-tabs without the local switcher
12 replies
FFilament
Created by Illizian on 3/11/2025 in #❓┊help
Panel ACL in local development
Filament\Http\Middleware\Authenticate:32
12 replies