NotificationLog.php 435 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * 推送通知日志.
  6. */
  7. class NotificationLog extends Model
  8. {
  9. protected $table = 'notification_log';
  10. protected $guarded = [];
  11. // 通知类型
  12. public function getTypeLabelAttribute(): string
  13. {
  14. $type = config('common.notification.labels')[$this->type];
  15. return trans("admin.system.notification.channel.{$type}");
  16. }
  17. }