Files
dafuweng/addons/webman/model/AdminFileAttachmentCate.php
2026-03-02 13:44:38 +08:00

16 lines
324 B
PHP

<?php
namespace addons\webman\model;
use Illuminate\Database\Eloquent\Model;
class AdminFileAttachmentCate extends Model
{
public function __construct(array $attributes = [])
{
parent::__construct($attributes);
$this->setTable(plugin()->webman->config('database.attachment_cate_table'));
}
}