Illizian
Illizian
Explore posts from servers
FFilament
Created by Illizian on 3/21/2025 in #❓┊help
Modal Action with Wizard, add additional Footer Actions
I am using a the ->steps() method on an Action, to create a Wizard with a modal action:
use Filament\Forms;
use Filament\Tables\Actions\Action;

Action::make('wizard')
->steps([
Forms\Components\Wizard\Step::make('Step 1')
->schema([
Forms\Components\TextInput::make('foo'),
]),
Forms\Components\Wizard\Step::make('Step 2')
->schema([
Forms\Components\TextInput::make('bar'),

]),
])
use Filament\Forms;
use Filament\Tables\Actions\Action;

Action::make('wizard')
->steps([
Forms\Components\Wizard\Step::make('Step 1')
->schema([
Forms\Components\TextInput::make('foo'),
]),
Forms\Components\Wizard\Step::make('Step 2')
->schema([
Forms\Components\TextInput::make('bar'),

]),
])
I am trying to register an additional footer action to this modal; what I have tried:
Action::make('wizard')
->steps([/* ... */])
->extraModalFooterActions(fn (Action $action): array => [
$action->makeModalSubmitAction('Another', arguments: ['foo' => 'bar']),
]),
->registerModalActions([
Action::make('Another')
]),
Action::make('wizard')
->steps([/* ... */])
->extraModalFooterActions(fn (Action $action): array => [
$action->makeModalSubmitAction('Another', arguments: ['foo' => 'bar']),
]),
->registerModalActions([
Action::make('Another')
]),
Having a dig around, I think I am being "hindered" by the getModalFooterActions() method on the CanOpenModal trait, it appears to ignore the above methods as a result of the modal containing a wizard, so I assume I'm missing a method I should be calling instead? Any help very much appreciated ❤️
20 replies
FFilament
Created by Illizian on 3/17/2025 in #❓┊help
Filament Docs; original code.
There's a process for automatically generating the doc-assets for use in the astro docs. It involves creating the actual Filament form used, rendering it, then Playwrite is used to take the actual screenshot that's used in the AutoScreenshot component. I'm looking for where the original Filament code is stored.
29 replies
FFilament
Created by Illizian on 3/13/2025 in #❓┊help
Do relationship columns need to be fillable?
I'm not a fan of adding relationship columns e.g. user_id, as fillable attributes on the Model, but does filament require them for relationship fields to work?
3 replies
FFilament
Created by Illizian on 3/11/2025 in #❓┊help
Panel ACL in local development
Is there a way to disable the ability for any user to access a panel when running locally and instead have the production behaviour consistently?
12 replies
FFilament
Created by Illizian on 3/11/2025 in #❓┊help
Advice: Building a "unified" platform.
I have a few direct questions, but they're related to a general question on how to "handle" an admin area, and, a client (customer) views. I have been using Laravel Nova for many years, where I would usually have a pretty clear distinction between the admin UIs, and the customer views. For these customer views, I would use Tailwind and create my own UI components, though recently I have been using Flux. With filament, I feel like I can lean on it more heavily and can use a lot of these elements for client views. I can see a few paths forward: 1. Create a Customer Panel, and lean on Filament Pages to build these views 2. Use Filament components, and use traditional blade views (plus a sprinkling of Livewire where appropriate) My concerns/questions then become: 1. Filament "lock-in" may make building Customer User Journeys quite difficult & restrictive, should we need to venture out of the norm. 2. How do I use filament components, I'm comfortable including them in Livewire components, but not so certain on using the blade components directly (e.g. I'm getting mixed results with using the <x-filament::* />)
9 replies
CDCloudflare Developers
Created by Illizian on 10/30/2023 in #workers-help
Schedule Handlers and Cron Triggers Timezone
It's just switched to Daylight Savings (UTC+0) in the UK now, which is our regular reminder of the pains of DateTime 😅 Is there a way to set the timezone on Cron Triggers?
5 replies