Tokumeikoi 5 years ago
parent
commit
f18715ed09
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Http/Controllers/User/TutorialController.php

+ 1 - 1
app/Http/Controllers/User/TutorialController.php

@@ -49,7 +49,7 @@ class TutorialController extends Controller
                 'data' => $tutorial
             ]);
         }
-        $tutorial = Tutorial::select(['id', 'category_id', 'title', 'icon'])
+        $tutorial = Tutorial::select(['id', 'category_id', 'title'])
             ->where('show', 1)
             ->get()
             ->groupBy('category_id');