mirror of
https://gitlab.com/uldvstar/exchange-2.0.git
synced 2026-08-19 12:34:24 +00:00
11 lines
138 B
PHP
11 lines
138 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Spatie\Permission\Models\Permission;
|
|
|
|
class Role extends AbstractModel
|
|
{
|
|
protected $table = 'roles';
|
|
}
|