You've already forked Atomcms-edit
Initial commit
This commit is contained in:
Executable
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use App\Models\Miscellaneous\WebsiteInstallation;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class TestingSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Seed the application's database.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
WebsiteInstallation::query()->insert(['completed' => true, 'installation_key' => 'key', 'step' => 0]);
|
||||
|
||||
$this->call([
|
||||
WebsiteSettingsSeeder::class,
|
||||
WebsiteLanguageSeeder::class,
|
||||
WebsitePermissionSeeder::class,
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user