First Commit

This commit is contained in:
Muhammad Herdy Iskandar
2024-07-27 00:18:34 +07:00
commit a099b28858
168 changed files with 17696 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<?php
namespace Database\Seeders;
use App\Models\Peleton;
use Illuminate\Database\Seeder;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
class PeletonSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
Peleton::create([
'name' => 'Abhaya',
'cofasilitator_id' => 1,
]);
Peleton::create([
'name' => 'Lakshya',
'cofasilitator_id' => 2,
]);
Peleton::create([
'name' => 'Sanjaya',
'cofasilitator_id' => 3,
]);
}
}