14 lines
203 B
PHP
14 lines
203 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Laratrust\Models\Role as LaratrustRole;
|
|
|
|
/**
|
|
* @method static where(string $string, string $string1)
|
|
*/
|
|
class Role extends LaratrustRole
|
|
{
|
|
public $guarded = [];
|
|
}
|