2023-03-28 15:47:37 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Database\Seeders;
|
|
|
|
|
|
|
|
use App\Models\Application;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
|
|
|
|
class ApplicationSettingsSeeder extends Seeder
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the database seeds.
|
|
|
|
*/
|
|
|
|
public function run(): void
|
|
|
|
{
|
2023-04-14 13:18:55 +02:00
|
|
|
$application_1 = Application::find(1)->load(['settings']);
|
2023-05-31 11:24:02 +02:00
|
|
|
$application_1->settings->is_debug_enabled = false;
|
2023-04-14 13:18:55 +02:00
|
|
|
$application_1->settings->save();
|
2023-03-28 15:47:37 +02:00
|
|
|
}
|
|
|
|
}
|