59 lines
1.3 KiB
PHP
59 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Notifications\Notifiable;
|
|
use Illuminate\Contracts\Auth\MustVerifyEmail;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
|
|
class User extends Authenticatable
|
|
{
|
|
use Notifiable;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'name','surname','phone', 'email', 'password',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be hidden for arrays.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $hidden = [
|
|
'password', 'remember_token',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts = [
|
|
'email_verified_at' => 'datetime',
|
|
];
|
|
|
|
/**
|
|
* Get user's notifications
|
|
* Performance: Use with eager loading when needed
|
|
* Example: User::with('notifications')->find($id)
|
|
*/
|
|
public function notifications()
|
|
{
|
|
return $this->hasMany(\App\Models\Notification::class);
|
|
}
|
|
|
|
/**
|
|
* Get user's unread notifications count
|
|
* Performance: Direct count query without loading records
|
|
*/
|
|
public function unreadNotificationsCount()
|
|
{
|
|
return $this->notifications()->where('is_read', false)->count();
|
|
}
|
|
}
|