Custom Backend OSPRO Surveyor Indonesia

18 lines
347 B

1 year ago
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Role extends Model
{
protected $table = 'm_roles';
const CREATED_AT = 'created_at';
const UPDATED_AT = 'updated_at';
protected $fillable = [
1 year ago
'name', 'description', 'default_page', 'created_at', 'created_by', 'updated_at', 'updated_by'
1 year ago
];
}