mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-07 04:59:36 +00:00
14 lines
185 B
PHP
14 lines
185 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* 推送通知日志.
|
|
*/
|
|
class NotificationLog extends Model
|
|
{
|
|
protected $table = 'notification_log';
|
|
}
|