mirror of
https://github.com/dyzulk/santulitam-temp.git
synced 2026-01-26 13:51:55 +07:00
first commit
This commit is contained in:
37
database/seeders/CofasilitatorSeeder.php
Normal file
37
database/seeders/CofasilitatorSeeder.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use App\Models\Cofasilitator;
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
|
||||
class CofasilitatorSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
Cofasilitator::create([
|
||||
'name' => 'Budi Santosa',
|
||||
'nim' => '202200221',
|
||||
'email' => 'budi@gmail.com',
|
||||
'phone' => '08123456789',
|
||||
]);
|
||||
|
||||
Cofasilitator::create([
|
||||
'name' => 'Citra Bayanti',
|
||||
'nim' => '202299013',
|
||||
'email' => 'lala@gmail.com',
|
||||
'phone' => '08123456789',
|
||||
]);
|
||||
|
||||
Cofasilitator::create([
|
||||
'name' => 'Monalika',
|
||||
'nim' => '202221095',
|
||||
'email' => 'monalika@gmail.com',
|
||||
'phone' => '08123456789',
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user