You've already forked Epicnabbo-Catalogus-Updated-Daily
16 lines
280 B
PHP
16 lines
280 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class AccountTopupFormRequest extends FormRequest
|
|
{
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'amount' => ['required', 'integer', 'min:1', 'max:250'],
|
|
];
|
|
}
|
|
}
|