mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-01-13 15:07:49 +00:00
40 lines
918 B
PHP
40 lines
918 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\Device;
|
|
use App\Models\Plugin;
|
|
use App\Models\User;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Seed the application's database.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
if (app()->isLocal()) {
|
|
User::factory()->create([
|
|
'name' => 'Test User',
|
|
'email' => 'admin@example.com',
|
|
'password' => bcrypt('admin@example.com'),
|
|
]);
|
|
|
|
Device::factory(1)->create([
|
|
'mac_address' => '00:00:00:00:00:00',
|
|
'api_key' => 'test-api-key',
|
|
]);
|
|
|
|
// Device::factory(5)->create();
|
|
|
|
// Plugin::factory(3)->create();
|
|
|
|
$this->call([
|
|
ExampleReceiptsSeeder::class,
|
|
]);
|
|
}
|
|
}
|
|
}
|