mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-03 02:58:42 +00:00
22 lines
400 B
PHP
22 lines
400 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* 推送通知日志.
|
|
*/
|
|
class NotificationLog extends Model
|
|
{
|
|
protected $table = 'notification_log';
|
|
|
|
protected $guarded = [];
|
|
|
|
// 通知类型
|
|
public function getTypeLabelAttribute(): string
|
|
{
|
|
return config('common.notification.labels')[$this->type] ?? trans('common.status.unknown');
|
|
}
|
|
}
|