123456789101112131415161718 |
- <?php
- namespace App\Shop\Base;
- use Illuminate\Foundation\Http\FormRequest;
- abstract class BaseFormRequest extends FormRequest
- {
- /**
- * Determine if the user is authorized to make this request.
- *
- * @return bool
- */
- public function authorize()
- {
- return true;
- }
- }
|