You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
979 B
PHP
48 lines
979 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
use Illuminate\Support\Carbon;
|
|
|
|
class Notification extends Model
|
|
{
|
|
const TYPE_DEPOSIT = 'deposit';
|
|
|
|
const TYPE_VOUCHER_STOCK = 'voucher_stock';
|
|
|
|
const UNREAD = 0;
|
|
|
|
const READ = 1;
|
|
|
|
protected $fillable = [
|
|
'entity_type',
|
|
'entity_id',
|
|
'description',
|
|
'is_read',
|
|
'url',
|
|
'type',
|
|
];
|
|
|
|
protected $appends = [
|
|
'format_created_at',
|
|
];
|
|
|
|
public function mark_as_read()
|
|
{
|
|
$this->update(['is_read' => self::READ]);
|
|
}
|
|
|
|
public function mark_all_as_read()
|
|
{
|
|
Notification::where('is_read', self::UNREAD)->where('entity_type', User::class)->update(['is_read' => self::READ]);
|
|
}
|
|
|
|
public function formatCreatedAt(): Attribute
|
|
{
|
|
return Attribute::make(get: function () {
|
|
return Carbon::parse($this->created_at)->translatedFormat('d F Y H:i:s');
|
|
});
|
|
}
|
|
}
|