Devise\Support\DeviseResponse::view PHP Method

view() public static method

Return a new view response from the application.
public static view ( string $view, array $data = [], integer $status = 200, array $headers = [] ) : Illuminate\Http\Response
$view string
$data array
$status integer
$headers array
return Illuminate\Http\Response
    public static function view($view, $data = array(), $status = 200, array $headers = array())
    {
        return \Response::view($view, $data, $status, $headers);
    }