migrant-web/app/Models/EmployerProfile.php
2026-05-26 14:52:16 +05:30

26 lines
481 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class EmployerProfile extends Model
{
protected $fillable = [
'user_id',
'company_name',
'phone',
'country',
'emirates_id_front',
'emirates_id_back',
'verification_status',
'rejection_reason',
'language',
'notifications',
'nationality',
'family_size',
'accommodation',
'district'
];
}