mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-15 13:32:41 +08:00
12 lines
141 B
PHP
12 lines
141 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Permission extends NexusModel
|
|
{
|
|
public $timestamps = true;
|
|
|
|
protected $fillable = ['name', ];
|
|
|
|
}
|