Xboard/app/Models/Plugin.php
2025-01-18 17:12:07 +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'
];
}