HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/ivs.kaunokolegija.lt/laravel/database/seeders/SettingsTableSeeder.php
<?php

namespace Database\Seeders;

use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;


class SettingsTableSeeder extends Seeder
{
    /**
     * Run the database seeds.
     */
    public function run(): void
    {
        DB::table('settings')->insert([
    ['key' => 'google_calendar_client_id', 'value' => 'your-client-id'],
    ['key' => 'google_calendar_client_secret', 'value' => 'your-client-secret'],
    ['key' => 'google_calendar_redirect_uri', 'value' => 'your-redirect-uri'],
    ['key' => 'google_calendar_token', 'value' => null],
    ['key' => 'email_host', 'value' => 'smtp.mailtrap.io'],
            ['key' => 'email_port', 'value' => '2525'],
            ['key' => 'email_username', 'value' => 'your-email-username'],
            ['key' => 'email_password', 'value' => 'your-email-password'],
]);

    }
}