PATH:
home
/
centosnipponia
/
public_html
/
ts
/
app
/
Http
/
Requests
<?php namespace App\Http\Requests; use App\Exceptions\ApiFailedException; use Illuminate\Contracts\Validation\Validator; use Illuminate\Foundation\Http\FormRequest; class UserRequest extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'name' => 'required | string ', 'email' => 'required | email | unique:users', 'password' => 'required | confirmed', 'role' => 'required', ]; } /** * Handle a failed validation attempt for API. */ protected function failedValidation(Validator $validator) { if (request()->is('api/*')) { throw new ApiFailedException($validator->errors()); } } }
[+]
..
[-] AuthRequest.php
[edit]
[-] PasswordChangeRequest.php
[edit]
[-] PermissionChangeRequest.php
[edit]
[-] PermissionRequest.php
[edit]
[-] ProfileUpdateRequest.php
[edit]
[-] RoleChangeRequest.php
[edit]
[-] RoleRequest.php
[edit]
[-] UserRequest.php
[edit]
[-] .htaccess.disabled
[edit]