mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-05 12:08:58 +00:00
15 lines
214 B
PHP
15 lines
214 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* 推送通知日志.
|
|
*/
|
|
class NotificationLog extends Model
|
|
{
|
|
protected $table = 'notification_log';
|
|
protected $guarded = [];
|
|
}
|