21 lines
511 B
PHP
21 lines
511 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\PlanResource\Pages;
|
|
|
|
use App\Filament\Resources\PlanResource;
|
|
use Filament\Notifications\Notification;
|
|
use Filament\Resources\Pages\CreateRecord;
|
|
|
|
class CreatePlan extends CreateRecord
|
|
{
|
|
protected static string $resource = PlanResource::class;
|
|
|
|
protected function getCreatedNotification(): ?Notification
|
|
{
|
|
return Notification::make()
|
|
->success()
|
|
->title('Plan created')
|
|
->body('Plan created successfully');
|
|
}
|
|
}
|