|
...
|
...
|
@@ -4,6 +4,7 @@ namespace App\Http\Logic\Bside\HomeCount; |
|
|
|
|
|
|
|
|
|
|
|
use App\Http\Logic\Bside\BaseLogic;
|
|
|
|
use App\Models\RouteMap\RouteMap;
|
|
|
|
use App\Models\Visit\Visit;
|
|
|
|
use App\Models\Visit\VisitItem;
|
|
|
|
use App\Models\HomeCount\Count;
|
|
...
|
...
|
@@ -116,7 +117,7 @@ class CountLogic extends BaseLogic |
|
|
|
public function with_data_count(){
|
|
|
|
$product_count = (new Product())->where(['project_id' => $this->user['project_id']])->count();
|
|
|
|
$news_count = (new News())->where(['project_id' => $this->user['project_id']])->count();
|
|
|
|
$page_count = (new BTemplate())->where(['project_id' => $this->user['project_id']])->count();
|
|
|
|
$page_count = (new RouteMap())->where(['project_id' => $this->user['project_id']])->count();
|
|
|
|
$data = [
|
|
|
|
'product_count' => $product_count,
|
|
|
|
'news_count' => $news_count,
|
...
|
...
|
|