| 123456789101112131415161718192021 |
- <?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->attributes['type']] ?? trans('common.status.unknown');
- }
- }
|