3 Commits 5b4618bdc2 ... 28ddfa3220

Tác giả SHA1 Thông báo Ngày
  EmilianoChavarria 28ddfa3220 fix: update sorting criteria for circulars to order by publication date 2 tuần trước cách đây
  AldrickChavarria 9c29198e0e Merge branch 'devAldrick' of ITTEC/PlataformaEducativaWeb2 into develop 2 tuần trước cách đây
  AldrickChavarria f99eafbeba Merge branch 'devAldrick' of ITTEC/PlataformaEducativaWeb2 into develop 3 tuần trước cách đây

+ 1 - 1
Back/backendP-Educativa/app/Http/Controllers/Api/CircularesController.php

@@ -159,7 +159,7 @@ class CircularesController extends Controller
         $circularList = DB::table('circulares')
             ->where('idEscuela', 'COLEGIOABC')
             ->where('estado', 'Activo')
-            ->orderBy('fechaCreacion', 'desc')
+            ->orderBy('fechaPublicacion', 'desc')
             ->get();
 
         foreach ($circularList as $circular) {