芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/invoicer.pulsehost.co.uk/database/seeders/UsersTableSeeder.php
'admin@invoiceshelf.com', 'name' => 'Jane Doe', 'role' => 'super admin', 'password' => 'invoiceshelf@123', ]); $company = Company::create([ 'name' => 'xyz', 'owner_id' => $user->id, 'slug' => 'xyz', ]); $company->unique_hash = Hashids::connection(Company::class)->encode($company->id); $company->save(); $company->setupDefaultData(); $user->companies()->attach($company->id); BouncerFacade::scope()->to($company->id); $user->assign('super admin'); Setting::setSetting('profile_complete', 0); // Set version. InstallUtils::setCurrentVersion(); } }