Unisharp\Laravelfilemanager\controllers\LfmController::show PHP Method

show() public method

Show the filemanager
public show ( ) : mixed
return mixed
    public function show()
    {
        $working_dir = '/';
        $working_dir .= Config::get('lfm.allow_multi_user') ? $this->getUserSlug() : Config::get('lfm.shared_folder_name');
        $extension_not_found = !extension_loaded('gd') && !extension_loaded('imagick');
        return view('laravel-filemanager::index')->with('working_dir', $working_dir)->with('file_type', $this->file_type)->with('startup_view', $this->startup_view)->with('extension_not_found', $extension_not_found);
    }