wahyuun
1 year ago
7 changed files with 46 additions and 20 deletions
@ -1,17 +1,17 @@ |
|||||||
<?php |
<?php |
||||||
|
|
||||||
namespace App\Models; |
namespace App\Models; |
||||||
|
|
||||||
use Illuminate\Database\Eloquent\Model; |
use Illuminate\Database\Eloquent\Model; |
||||||
|
|
||||||
class Role extends Model |
class Role extends Model |
||||||
{ |
{ |
||||||
protected $table = 'm_roles'; |
protected $table = 'm_roles'; |
||||||
|
|
||||||
const CREATED_AT = 'created_at'; |
const CREATED_AT = 'created_at'; |
||||||
const UPDATED_AT = 'updated_at'; |
const UPDATED_AT = 'updated_at'; |
||||||
|
|
||||||
protected $fillable = [ |
protected $fillable = [ |
||||||
'name', 'description', 'created_at', 'created_by', 'updated_at', 'updated_by' |
'name', 'description', 'default_page', 'created_at', 'created_by', 'updated_at', 'updated_by' |
||||||
]; |
]; |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue