40 lines
916 B
PHP
Executable File
40 lines
916 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Requests\Admin\Master;
|
|
|
|
use App\Traits\NotificationTrait;
|
|
use Illuminate\Contracts\Validation\Validator;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
class ServiceRequest extends FormRequest
|
|
{
|
|
use NotificationTrait;
|
|
|
|
public function authorize(): bool
|
|
{
|
|
return Auth::check();
|
|
}
|
|
|
|
protected function prepareForValidation(): void
|
|
{
|
|
$this->merge([
|
|
'price' => removeRupiahFormatting($this->price),
|
|
]);
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'name' => ['required', 'string', 'max:100'],
|
|
'price' => ['required', 'numeric', 'min:0'],
|
|
'description' => ['required', 'string', 'max:65535'],
|
|
];
|
|
}
|
|
|
|
protected function failedValidation(Validator $validator): void
|
|
{
|
|
$this->handleValidationFailure($validator);
|
|
}
|
|
}
|