NotificationLog.php 181 B

123456789101112
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * 推送通知日志
  6. */
  7. class NotificationLog extends Model {
  8. protected $table = 'notification_log';
  9. }