mkA~(@^_^@)~PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT p0 'int', 'birth_date' => 'datetime', 'national_id' => 'int', 'email_verified_at' => 'datetime' ]; protected $hidden = [ 'password' ]; protected $fillable = [ 'username', 'email', 'password', 'phone', 'mobile', 'first_name', 'second_name', 'third_name', 'last_name', 'role_id', 'status', 'martial_status', 'gender', 'birth_date', 'national_id', 'email_verified_at' ]; public function __construct(array $attributes = []) { parent::__construct($attributes); $this->multiple_attachment = true; $this->multiple_attachment_usage = ['default', 'bdf-file']; } public function getImageAttribute() { return $this->attachmentRelation()->first(); } public function fcmTokens() { return $this->morphMany(FcmToken::class, 'user'); } public function bankAccount() { return $this->hasOne(BankAccount::class); } }