40 lines
976 B
PHP
40 lines
976 B
PHP
<?php
|
|
|
|
namespace App\Filament\Admin\Resources\Languages\Pages;
|
|
|
|
use App\Filament\Admin\Resources\Languages\LanguageResource;
|
|
use Filament\Notifications\Notification;
|
|
use Filament\Resources\Pages\CreateRecord;
|
|
|
|
class CreateLanguage extends CreateRecord
|
|
{
|
|
protected static string $resource = LanguageResource::class;
|
|
|
|
public function getTitle(): string
|
|
{
|
|
return __('language.create');
|
|
}
|
|
|
|
protected function getCreatedNotification(): ?Notification
|
|
{
|
|
return Notification::make()
|
|
->success()
|
|
->title(__('language.created_successfully'))
|
|
->body(__('language.created_successfully_body'));
|
|
}
|
|
|
|
protected function getRedirectUrl(): string
|
|
{
|
|
return $this->getResource()::getUrl('index');
|
|
}
|
|
|
|
protected function mutateFormDataBeforeCreate(array $data): array
|
|
{
|
|
$data['created_by'] = auth()->id();
|
|
$data['updated_by'] = auth()->id();
|
|
|
|
return $data;
|
|
}
|
|
}
|
|
|