We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9586ad commit a6a00acCopy full SHA for a6a00ac
src/Helpers/DatabaseManager.php
@@ -37,7 +37,7 @@ private function migrate($outputLog)
37
Artisan::call('migrate', ["--force"=> true], $outputLog);
38
}
39
catch(Exception $e){
40
- return $this->response($e->getMessage(), $outputLog);
+ return $this->response($e->getMessage(), 'error', $outputLog);
41
42
43
return $this->seed($outputLog);
@@ -55,7 +55,7 @@ private function seed($outputLog)
55
Artisan::call('db:seed', [], $outputLog);
56
57
58
59
60
61
return $this->response(trans('installer_messages.final.finished'), 'success', $outputLog);
0 commit comments