Skip to content

Commit

Permalink
laravel 5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna committed Aug 31, 2017
1 parent be0d462 commit b34a4e7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
],
"require": {
"php": ">=7.0",
"orchid/platform": "^1.0",
"orchid/settings": "^2.0",
"orchid/log": "^1.0",
"orchid/monitor": "^1.0",
Expand Down
2 changes: 2 additions & 0 deletions src/Http/Controllers/Install/WelcomeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public function welcome()
{
try {
Artisan::call('vendor:publish', [
'--all' => true,
'--force' => true,
]);
Artisan::call('event:generate');
Expand All @@ -24,6 +25,7 @@ public function welcome()
Artisan::call('route:clear');
Artisan::call('storage:link');
Artisan::call('notifications:table');
Artisan::call('make:auth');
} catch (\Exception $exception) {
$exception = $exception->getMessage();
}
Expand Down
2 changes: 1 addition & 1 deletion src/Http/Controllers/Systems/BackupController.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function index()
{
$this->data['backups'] = [];

foreach (config('laravel-backup.backup.destination.disks') as $diskName) {
foreach (config('backup.backup.destination.disks') as $diskName) {
$disk = Storage::disk($diskName);
$adapter = $disk->getDriver()->getAdapter();
$files = $disk->allFiles();
Expand Down
12 changes: 6 additions & 6 deletions src/Providers/FoundationServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,12 @@ public function provides()
PermissionServiceProvider::class,
EventServiceProvider::class,
MenuServiceProvider::class,
\Cviebrock\EloquentSluggable\ServiceProvider::class,
SettingServiceProvider::class,
ImageServiceProvider::class,
TagsServiceProvider::class,
BackupServiceProvider::class,
LogServiceProvider::class,
//\Cviebrock\EloquentSluggable\ServiceProvider::class,
//SettingServiceProvider::class,
//ImageServiceProvider::class,
//TagsServiceProvider::class,
//BackupServiceProvider::class,
//LogServiceProvider::class,
];
}

Expand Down

0 comments on commit b34a4e7

Please sign in to comment.