source: database/seeders/RolesTableSeeder.php@ c6b84df

develop
Last change on this file since c6b84df was c6b84df, checked in by beratkjufliju <kufliju@…>, 3 years ago

added fileTypes controller, notifications, excel export, edited views

  • Property mode set to 100644
File size: 561 bytes
Line 
1<?php
2
3namespace Database\Seeders;
4
5use Illuminate\Database\Seeder;
6
7class RolesTableSeeder extends Seeder
8{
9 /**
10 * Run the database seeds.
11 *
12 * @return void
13 */
14 public function run()
15 {
16 \DB::table('roles')->insert([
17 ["name" => "Admin"], // Have access to all users(managing users), departments, folders etc
18 ["name" => "Referent"], // Have access to manage and view all departments, folders etc
19 ["name" => "Viewer"], // Have access to view all departments, folders etc
20 ]);
21 }
22}
Note: See TracBrowser for help on using the repository browser.