App\Http\Requests\RegisterRequest::authorize PHP 메소드

authorize() 공개 메소드

public authorize ( )
    public function authorize()
    {
        return true;
    }

Usage Example

 /**
  * Determine if the user is authorized to make this request.
  *
  * @return bool
  */
 public function authorize()
 {
     return parent::authorize();
 }