shoppingmallv2/app/Backend/CategoryBackend.php
2023-07-31 17:43:31 +09:00

15 lines
249 B
PHP

<?php
namespace App\Backend;
use App\Models\CategoryModel;
class CategoryBackend extends BaseHierarchyBackend
{
public function __construct()
{
parent::__construct('Category');
$this->_model = new CategoryModel();
}
}