FilaFan
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
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