Xboard/app/Models/Plugin.php
xboard 0f43fff242
Some checks are pending
Docker Build and Publish / build (push) Waiting to run
feat: new xboard
2025-01-21 14:57:54 +08:00

17 lines
231 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Plugin extends Model
{
protected $table = 'v2_plugins';
protected $guarded = [
'id',
'created_at',
'updated_at'
];
}