mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-28 12:11:08 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Database\Seeders;
 | |
| 
 | |
| use Crater\Models\Company;
 | |
| use Crater\Models\Setting;
 | |
| use Crater\Models\User;
 | |
| use Illuminate\Database\Seeder;
 | |
| use Silber\Bouncer\BouncerFacade;
 | |
| use Vinkla\Hashids\Facades\Hashids;
 | |
| 
 | |
| class UsersTableSeeder extends Seeder
 | |
| {
 | |
|     /**
 | |
|      * Run the database seeds.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function run()
 | |
|     {
 | |
|         $user = User::create([
 | |
|             'email' => 'admin@craterapp.com',
 | |
|             'name' => 'Jane Doe',
 | |
|             'role' => 'super admin',
 | |
|             'password' => 'crater@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);
 | |
|     }
 | |
| }
 |