migrant-web/app/Models/EmployerProfile.php
2026-05-20 13:26:43 +05:30

22 lines
390 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'
];
}