2026-01-25 21:03:33 +01: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;
}
}