25 lines
629 B
PHP
25 lines
629 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\StickerMasterResource\Pages;
|
|
|
|
use App\Filament\Resources\StickerMasterResource;
|
|
use Filament\Actions;
|
|
use Filament\Resources\Pages\CreateRecord;
|
|
use Illuminate\Validation\ValidationException;
|
|
|
|
class CreateStickerMaster extends CreateRecord
|
|
{
|
|
protected static string $resource = StickerMasterResource::class;
|
|
|
|
protected function beforeCreate(): void
|
|
{
|
|
$errors = [];
|
|
|
|
if (!empty($this->data['item_error'])) {
|
|
throw ValidationException::withMessages([
|
|
'item_id' => 'Fix the errors before submitting.',
|
|
]);
|
|
}
|
|
}
|
|
}
|