Add Remove User Insurance

This commit is contained in:
R
2023-03-12 18:50:07 +07:00
parent 26290912ef
commit c35442e652
4 changed files with 35 additions and 1 deletions

View File

@@ -4,8 +4,17 @@ namespace App\Models\OLDLMS;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class UserInsurance extends Model
{
use HasFactory;
const CREATED_AT = 'dCreateOn';
const UPDATED_AT = 'dUpdateOn';
const DELETED_AT = 'dDeleteOn';
protected $connection = 'oldlms';
protected $table = 'tm_users_insurance';
}