Ejemplo n.º 1
0
 public static function getAllCategories()
 {
     $results = Categorie::select('name', 'id')->orderBy('name', 'asc')->get();
     $allCategories = array();
     foreach ($results as $result) {
         $allCategories = array_add($allCategories, $result->id, $result->name);
     }
     return $allCategories;
 }