BaseFormRequest.php 306 B

123456789101112131415161718
  1. <?php
  2. namespace App\Shop\Base;
  3. use Illuminate\Foundation\Http\FormRequest;
  4. abstract class BaseFormRequest extends FormRequest
  5. {
  6. /**
  7. * Determine if the user is authorized to make this request.
  8. *
  9. * @return bool
  10. */
  11. public function authorize()
  12. {
  13. return true;
  14. }
  15. }