40 lines
924 B
PHP
40 lines
924 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Attributes\Appends;
|
|
use Illuminate\Database\Eloquent\Attributes\Guarded;
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
#[Appends(['formatted_read_at'])]
|
|
#[Guarded(['id'])]
|
|
class AppNotification extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'notifications';
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'is_read' => 'boolean',
|
|
'read_at' => 'datetime',
|
|
];
|
|
}
|
|
|
|
protected function formattedReadAt(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
get: fn () => $this->read_at?->translatedFormat('l, d F Y H:i'),
|
|
);
|
|
}
|
|
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
}
|