Small changes

Copy icon if missing on new app add.
Change order of create symlink and load apps
This commit is contained in:
Kode
2018-11-09 23:07:01 +00:00
parent 98c6093674
commit ab83c3a551
4 changed files with 18 additions and 10 deletions

View File

@@ -47,6 +47,11 @@ class AppServiceProvider extends ServiceProvider
}
}
if(!is_file(public_path('storage'))) {
Artisan::call('storage:link');
\Session::put('current_user', null);
}
$applications = Application::all();
if($applications->count() <= 0) {
@@ -58,11 +63,6 @@ class AppServiceProvider extends ServiceProvider
}
if(!is_file(public_path('storage'))) {
Artisan::call('storage:link');
\Session::put('current_user', null);
}
// User specific settings need to go here as session isn't available at this point in the app
view()->composer('*', function ($view)
{