Файловый менеджер - Редактировать - /home/clickysoft/public_html/somni.clickysoft.net/database/seeders/WalletSeeder.php
Назад
<?php namespace Database\Seeders; use Illuminate\Database\Console\Seeds\WithoutModelEvents; use Illuminate\Database\Seeder; use App\Models\Wallet; class WalletSeeder extends Seeder { /** * Run the database seeds. */ public function run(): void { $wallets = [ [ 'id' => 1, 'user_id' => 1, 'balance' => 0, 'created_at' => now(), ], [ 'id' => 2, 'user_id' => 2, 'balance' => 0, 'created_at' => now(), ], [ 'id' => 3, 'user_id' => 3, 'balance' => 0, 'created_at' => now(), ] ]; Wallet::insert($wallets); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка