コード例 #1
0
 public function __construct(App $app)
 {
     parent::__construct($app);
     $this->tableProduct = $this->getModel()->getTableName();
     $this->tableSku = Sku::getTableName();
     $this->tableSkuImages = Sku\Image::getTableName();
     $this->tableSupplier = Supplier::getTableName();
     $this->tableCategory = Category::getTableName();
     $this->tableProductCategory = ProductCategory::getTableName();
 }
コード例 #2
0
 public function __construct(App $app)
 {
     parent::__construct($app);
     $this->tableProduct = Product::getTableName();
     $this->tableSku = $this->getModel()->getTableName();
     $this->tableSkuImages = Sku\Image::getTableName();
     $this->tableSkuAttributes = Sku\Attribute::getTableName();
     $this->tableVariations = Variation::getTableName();
     $this->tableProductVariations = \App\Models\Product\Variation::getTableName();
     $this->tableVariationAttribute = Variation\Attribute::getTableName();
 }
コード例 #3
0
 public function __construct(App $app)
 {
     parent::__construct($app);
     $this->tableCarriers = Carrier::getTableName();
     $this->tableCountry = $this->getModel()->getTableName();
 }
コード例 #4
0
 public function __construct(App $app)
 {
     parent::__construct($app);
 }
コード例 #5
0
 public function __construct(App $app)
 {
     parent::__construct($app);
     $this->table = $this->getModel()->getTableName();
 }