2025-09-14 18:41:00 +02:00

17 lines
286 B
PHP

<?php
namespace Vanguard\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
abstract class Request extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}