dyjh 6 years ago
parent
commit
6df3f0c7f2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Http/Controllers/Api/V1/AlbumController.php

+ 1 - 1
app/Http/Controllers/Api/V1/AlbumController.php

xqd
@@ -1039,7 +1039,7 @@ class AlbumController extends Controller
         $total = 0;
         foreach ($cat as $key => $val) {
             $count = CustomerCatRecordModel::where([['agent_id',$user_agent->id],['store_id',$store_id],['open_id',$open_id],['cat_id',$val['id']],['updated_at','>=',$start],['updated_at','<=',$end]])->get();
-            dd($count);
+            dd($user_agent);
             $total += $count;
             $cat[$key]['num'] = $count;
         }