FilaFan
FilaFan
FFilament
Created by I am that I am on 1/31/2025 in #❓┊help
Will editor.js be okay to use as a block editor for a CMS?
This block editor was shared by toeknee the other day, it's pretty cool https://pavereditor.com/ and even integration with Filament https://vanrossum.dev/43-using-paver-as-a-filament-custom-field
6 replies
FFilament
Created by Shiya on 12/2/2024 in #❓┊help
Help the set up php project on my local computer
or just sail command
8 replies
FFilament
Created by Wirkhof on 11/26/2024 in #❓┊help
After "php artisan migrate:fresh" the admin is lost
what about adding it in user migration? // Insert the initial user DB::table('users')->insert([ 'name' => 'John Smith', 'email' => '[email protected]', 'password' => Hash::make('password'), 'role' => 'admin', 'created_at' => now(), 'updated_at' => now(), 'email_verified_at' => now(), ]);
9 replies
FFilament
Created by FilaFan on 7/2/2024 in #❓┊help
State of multiple toggle buttons
That did it, thank you @awcodes ->afterStateUpdated(function (Set $set, Component $component, ?string $state) { $livewireComponent = $component->getLivewire(); // Extract the data array $data = $livewireComponent->data;
5 replies
FFilament
Created by FilaFan on 7/2/2024 in #❓┊help
State of multiple toggle buttons
thanks @awcodes I will look into livewire, I'm still newish to livewire, will also try getLivewire()
5 replies