You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
420 B

<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
/**
* Class LaRbacDatabaseSeeder
*
* @author Andrey Girnik <girnikandrey@gmail.com>
*/
class LaRbacDatabaseSeeder extends Seeder
{
/**
* Seed the application's database with RBAC data.
* @return void
*/
public function run()
{
$this->call(PermissionSeeder::class);
$this->call(RoleSeeder::class);
}
}