PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
core
/
support
/
src
/
Http
/
Requests
<?php namespace Botble\Support\Http\Requests; use Illuminate\Foundation\Http\FormRequest; use Illuminate\Http\Concerns\InteractsWithInput; /** * @mixin InteractsWithInput */ abstract class Request extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } }
[+]
..
[-] Request.php
[edit]