23 lines
451 B
PHP
23 lines
451 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class DepartmentSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
DB::table('roles')->insert([
|
|
['name' => 'Admin'],
|
|
['name' => 'Coordinator'],
|
|
['name' => 'Faculty'],
|
|
]);
|
|
}
|
|
}
|