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