12 lines
192 B
PHP
Executable File
12 lines
192 B
PHP
Executable File
<?php namespace Common\Core;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class BaseFormRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
}
|