İlk temizlik tamamlandı bir önceki projeden
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
<?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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user