Arcanedev\LogViewer\Http\Controllers\Controller::view PHP Method

view() public method

Get the evaluated view contents for the given view.
public view ( string $view, array $data = [], array $mergeData = [] ) : Illuminate\View\View
$view string
$data array
$mergeData array
return Illuminate\View\View
    public function view($view, $data = [], $mergeData = [])
    {
        return view('log-viewer::' . $view, $data, $mergeData);
    }