Lara Zeus
Lara Zeus
FFilament
Created by Chinese on 4/3/2025 in #❓┊help
problem with user_id
27 replies
FFilament
Created by Glebka on 4/3/2025 in #❓┊help
How to delete database notification after an action?
3 replies
FFilament
Created by Veronica on 4/3/2025 in #❓┊help
FileUpload .xlsx
No description
6 replies
FFilament
Created by Chinese on 4/3/2025 in #❓┊help
problem with user_id
share the code. where is this happens? is this in a relation manager or a form? maybe you need a select for the user id? or you want the user_id from the session?
27 replies
FFilament
Created by D5300 on 4/2/2025 in #❓┊help
Guidance custom field
Dan has an amazing videos on how to build plugins and custom components https://laracasts.com/series/build-advanced-components-for-filament/episodes/12?referer=DanHarrin https://filamentphp.com/docs/3.x/support/plugins/getting-started other source is to look into already existing plugins and check how they making it!
5 replies
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 🙂
8 replies
FFilament
Created by Fayne on 4/1/2025 in #❓┊help
What's the correct approach to load filament styles in a frontend page?
8 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