20 lines
		
	
	
		
			408 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			408 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Database\Seeders;
 | |
| 
 | |
| use App\Models\Application;
 | |
| use Illuminate\Database\Seeder;
 | |
| 
 | |
| class ApplicationSettingsSeeder extends Seeder
 | |
| {
 | |
|     /**
 | |
|      * Run the database seeds.
 | |
|      */
 | |
|     public function run(): void
 | |
|     {
 | |
|         $application_1 = Application::find(1)->load(['settings']);
 | |
|         $application_1->settings->is_debug_enabled = false;
 | |
|         $application_1->settings->save();
 | |
|     }
 | |
| }
 | 
