21 lines
345 B
PHP
21 lines
345 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Api\V1\Wallet;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class ConfirmTopUpRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'payment_uuid' => ['required', 'uuid'],
|
|
];
|
|
}
|
|
}
|