File "BaseFormRequest.php"

Full Path: /var/www/drive/foundation/src/Core/Exceptions/BaseFormRequest.php
File size: 192 bytes
MIME-type: text/x-php
Charset: utf-8

<?php namespace Common\Core;

use Illuminate\Foundation\Http\FormRequest;

class BaseFormRequest extends FormRequest
{
    public function authorize(): bool
    {
        return true;
    }
}