mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 04:24:08 +00:00
8da0cbceec
added user to return role
20 lines
302 B
PHP
20 lines
302 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->call(UsersTableSeeder::class);
|
|
$this->call(RolesAndPermissionsSeeder::class);
|
|
|
|
|
|
}
|
|
}
|