mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-23 11:08:13 -05:00
17 lines
231 B
PHP
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'
|
||
|
];
|
||
|
}
|