Files
ProxyPanel/app/Models/NotificationLog.php
2021-01-07 04:53:17 +08:00

15 lines
214 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* 推送通知日志.
*/
class NotificationLog extends Model
{
protected $table = 'notification_log';
protected $guarded = [];
}