mead vor 2 Monaten
Ursprung
Commit
54ccc02f7d
1 geänderte Dateien mit 0 neuen und 2 gelöschten Zeilen
  1. 0 2
      app/Console/Commands/InitCourseCommand.php

+ 0 - 2
app/Console/Commands/InitCourseCommand.php

@@ -202,8 +202,6 @@ class InitCourseCommand extends Command
             $data = json_decode($data, true);
             foreach ($data['Videos'] as $k => $v) {
                 $sort = $t - $k;
-                dd($sort);
-                dd($v);
                 Video::query()->where('course_id', 'in', $courses)->where('title', $v['name'])->update(['sort' => $sort]);
             }
         }