Browse Source

数据仓库

develop
lemon 4 years ago
parent
commit
9c47db2244
  1. 3
      app/Admin/Controllers/DemandProductController.php
  2. 16
      app/Admin/Repositories/DemandProduct.php

3
app/Admin/Controllers/DemandProductController.php

@ -3,11 +3,10 @@
namespace App\Admin\Controllers;
use App\Admin\Extensions\Grid\AuditDemandProduct;
use App\Admin\Repositories\Product;
use App\Admin\Repositories\DemandProduct;
use App\Common\ProductStatus;
use App\Common\UserStatus;
use App\Models\Category;
use App\Models\DemandProduct;
use App\Models\Supplier;
use Dcat\Admin\Form;
use Dcat\Admin\Grid;

16
app/Admin/Repositories/DemandProduct.php

@ -0,0 +1,16 @@
<?php
namespace App\Admin\Repositories;
use App\Models\DemandProduct as Model;
use Dcat\Admin\Repositories\EloquentRepository;
class DemandProduct extends EloquentRepository
{
/**
* Model.
*
* @var string
*/
protected $eloquentClass = Model::class;
}
Loading…
Cancel
Save