<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class UserProfile extends Model
{
public $timestamps = false;
protected $table = "tbl_user_profiles";
protected $fillable = [
'id', 'UserId', 'ModuleId', 'ProfileId', 'ProfileName', 'C', 'R', 'U', 'D', 'Web', 'Mobile', 'RoleId', 'Status', 'IsDeleted', 'CrmId', 'Created_by', 'Updated_at', 'Updated_by', 'Created_at'
];
}