storeDefaultSettings(); //$this->withoutExceptionHandling(); } public function storeDefaultSettings() { DB::table('settings')->insert([ [ 'name' => 'storage_limitation', 'value' => 1, ], [ 'name' => 'license', 'value' => 'extended', ], [ 'name' => 'language', 'value' => 'en', ], ]); } }