BookStack\Http\Controllers\SettingController::index PHP Method

index() public method

Display a listing of the settings.
public index ( ) : Response
return Response
    public function index()
    {
        $this->checkPermission('settings-manage');
        $this->setPageTitle('Settings');
        // Get application version
        $version = trim(file_get_contents(base_path('version')));
        return view('settings/index', ['version' => $version]);
    }
SettingController