Igor
Igor
FFilament
Created by K R A T O S on 2/25/2024 in #❓┊help
Uploading images in Production
It's possible that there is a permission issue in the folders. You could try this solution to see if it resolves the problem. https://stackoverflow.com/questions/30639174/how-to-set-up-file-permissions-for-laravel
4 replies
FFilament
Created by bodhi8370 on 2/26/2024 in #❓┊help
Class "NumberFormatter" not found
Its look like extension issue, depending of your VPS O.S there are many ways to add extension. In Ubuntu 20.04, I use the following command: sudo apt-get install php8.3-intl replace 8.3 with your PHP version and restart you server
6 replies
FFilament
Created by Igor on 2/23/2024 in #❓┊help
conditional configureusing
but I can use the name of input, witch solve
6 replies
FFilament
Created by Igor on 2/23/2024 in #❓┊help
conditional configureusing
Thank you leandro. This makes sense, but it doesn't work as expected because the reset password view only has a regular text input.
protected function getEmailFormComponent(): Component { return TextInput::make('email') ->label(__('filament-panels::pages/auth/password-reset/reset-password.form.email.label')) ->disabled() ->autofocus(); }
6 replies
FFilament
Created by Igor on 2/9/2024 in #❓┊help
Is possible keep columns names with Grid or Split layout ?
UP
4 replies
FFilament
Created by Igor on 1/29/2024 in #❓┊help
$subNavigationPosition for cluster ?
yes, but seems that in resource cluster do not have effect
5 replies
FFilament
Created by Bruno Silva on 1/27/2024 in #❓┊help
How to apply money mask to a input field
Also, the alpine js has a built-in money mask that you can try, but for brl, don't works well for me
4 replies
FFilament
Created by Bruno Silva on 1/27/2024 in #❓┊help
How to apply money mask to a input field
The brl currency mask is annoying, but there is a package with Brazilian fields, search for pt br fields filament
4 replies
FFilament
Created by TranceCode on 1/27/2024 in #❓┊help
How can change the background color in Widget card
I'm not sure if there is any property for this, but you can customize the theme freely, I'm doing it
4 replies
FFilament
Created by shojibflamon on 1/28/2024 in #❓┊help
3.2 Upgrade Issue
Do you ran npm run build?
37 replies
FFilament
Created by bdm-laravel on 1/23/2024 in #❓┊help
How to boost the performance in filament
I'm using the fraken php as server and is pretty fast
10 replies
FFilament
Created by Igor on 1/20/2024 in #❓┊help
Duration / Time Span input
Anyway, I did here with a field type numeric, and for 30 min for e example the use should input 0.5, 1 for 1 hour etc, it's no ideal, but I can manage this
6 replies
FFilament
Created by Igor on 1/20/2024 in #❓┊help
Duration / Time Span input
I was thinking in two fields, one for hour and other to minutes, and the final value will be the hour * 60 + minutes, I know how to do it in react, but in livewire and filament no, other problem will be the return value to fill it.
6 replies
FFilament
Created by Ahmed Ali on 1/15/2024 in #❓┊help
navigationGroup
For add resources inside the nav group you can set navigation group string inside the resource https://filamentphp.com/docs/3.x/panels/navigation#grouping-navigation-items-under-other-items
9 replies
FFilament
Created by Ahmed Ali on 1/15/2024 in #❓┊help
navigationGroup
You can pass ->collapsed(), but do you need to declare the groups on panel configs https://filamentphp.com/docs/3.x/panels/navigation#customizing-navigation-groups
9 replies
FFilament
Created by morty on 1/15/2024 in #❓┊help
Sorry this might be dumb, but how can I extend a method that returns a component with additional...
13 replies
FFilament
Created by morty on 1/15/2024 in #❓┊help
Sorry this might be dumb, but how can I extend a method that returns a component with additional...
Can you confirm the component import ? should be Filament\Forms\Components\Component;
13 replies
FFilament
Created by Arrow on 1/8/2024 in #❓┊help
Apply filament tab query filter to table on custom ViewRecord page
I'm with the same need, There are some columns that I want to hide depending of active tab
3 replies
FFilament
Created by Igor on 1/9/2024 in #❓┊help
1 resource with 2 ManageRecord is possible ?
Based in documentation, I tried: public static function getPages(): array { return [ 'index' => Pages\ManageContasPagar::route('/pagar'), 'index-receber' => Pages\ManageContasReceber::route('/receber'), ]; } public static function getRecordSubNavigation(Page $page): array { return $page->generateNavigationItems([ Pages\ManageContasPagar::class, Pages\ManageContasReceber::class, ]); } the routes exits, but any new page at navigation menu
3 replies
FFilament
Created by Igor on 1/5/2024 in #❓┊help
Repeater with fileupload mixing state between them
Is possible to get the repeater index ? if I have it, i can use to build the collection name, which can fix that
7 replies