Steff
table row action to run a job?
I'm loocking for a table row action to run a job (script, service class...). I have a job (command) and i want run it with a click of a table row action. I need the record id in the script. i think the biggest challenge is the output of the success/failure message? how can i simply call a script is there an easy way? Something like that:
Does anyone have a tip for me?
11 replies
Saas with filament
Which saas tool is recommended for filament (classic variant option 1,2,3). (My roles and permissens will be create with shield.) Or a Panel for any saas option?
What can or should I consider at the beginning of a filament project in case I want to make a saas out of it later? Or should I start with a saas shell at the beginning of a project?
There are a tutorial?
8 replies
CustomersPanelProvider in Breezy? Why Customers and not AdminPanel...
I have a fresh filament project and i wanna configure breezy. First adding the class to your Filament Panel's plugin() But i dont have a CustomersPanelProvider ? Can i use AdminPanelProvider or i have to create a Customer(s)-Panel.? Next ->authGuard('customers'), same questiion.
11 replies
Activate stephenjude-two-factor-authentication?
hi, i tried stephenjude-two-factor-authentication. I think it works. I can enable (and disable) 2FA but doesnt matter, there is no effect after logout / login. I dont have to put in a code. Maybe the reason is the code in user.php.
The 2fa is presumably ignored as result. But how do I integrate the 2fa there with canAcessPanel?
16 replies
Do i realy have to create a new model AND migration to use Filament Breezy plugin?
Here are two tutorials for that. Why can i not only use the existing User model? At the end; ->authGuard('user');
https://medium.com/@misteryomi/implementing-custom-admin-auth-middleware-in-laravel-filament-5eedaca95318
https://medium.com/@josephajibodu/change-laravel-authentication-model-for-filamentphp-3-b69fa1560cb2
2 replies
Clusters: Account Settings with Sub-Navigation has changed?
This filamentexample, https://filamentexamples.com/project/clusters-accounts-settings-sub-navigation its not up to date?
The php artisan make:filament-page ProfileSettings --type=custom ask not for name space. It asked for panel id and resource.
What is the right way now? I got also an error. But i am not sure if this is the reason.
3 replies
Fila Starter Kit installation error
I would like to install https://filamentphp.com/plugins/raugadh-fila-starter#create-new-project . The installation with
´´´composer create-project --prefer-dist raugadh/fila-starter example-app´´´ abort with an error:
(Add Database Credentials comes later)
Any idea?
2 replies
Specific partly output of a text column.I know the ->limit(50) method.I need a
I know the ->limit(15) method. But i need another output. E.g. the original value is "A1234567" and I want to output "A67" Something like that:
```
$string = 'A1234567'
$string2 = '**'
strlen($string)
$string3 = $string2($string, 0 , strlen($string) - 3)
echo substr($string, 0, 1) . $string3 . substr($string, -2);
output: 'A*67'
```
But how in filament. Probably something with formatStateUsing.
18 replies