23 lines
554 B
PHP
23 lines
554 B
PHP
<?php
|
|
|
|
namespace App\Filament\Actions\Cheerful;
|
|
|
|
use App\Filament\Support\CheerfulNotification;
|
|
use Filament\Actions\CreateAction as ActionsCreateAction;
|
|
|
|
class CreateAction extends ActionsCreateAction
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->modalHeading('Tambah Data Seru! 🚀✨');
|
|
|
|
$this->modalDescription('Isi form di bawah ini dengan semangat ya, biar datanya tersimpan dengan aman! 💪😊');
|
|
|
|
$this->successNotification(
|
|
CheerfulNotification::create()
|
|
);
|
|
}
|
|
}
|