Deploy Ladill Servers / deploy (push) Successful in 25s
Seed Contabo-backed VPS and dedicated plans, open the order modal from dashboard links, and show clearer order CTAs when the catalog is empty. Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
314 B
PHP
19 lines
314 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
use WithoutModelEvents;
|
|
|
|
public function run(): void
|
|
{
|
|
$this->call([
|
|
ServerProductSeeder::class,
|
|
]);
|
|
}
|
|
}
|