NotificationLog.php 214 B

1234567891011121314
  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. }