18 lines
233 B
PHP
18 lines
233 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Role extends Model
|
|
{
|
|
//
|
|
protected $fillable = [
|
|
'id',
|
|
'name',
|
|
'module',
|
|
'created_at',
|
|
'updated_at'
|
|
];
|
|
}
|