PATH:
home
/
lab2454c
/
costbloc.com
/
app
/
Http
/
Requests
/
Common
<?php namespace App\Http\Requests\Common; use Illuminate\Foundation\Http\FormRequest; class DashboardRequest extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { if ($this->wantsJson()) { return true; } return false; } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ // ]; } }
[+]
..
[-] DashboardRequest.php
[edit]