Ejemplo n.º 1
0
 /**
  * Get Actors.
  *
  * @return array
  */
 public function actors()
 {
     $obj = new Actors();
     $resultat = $obj->getNbActorsByCity();
     //exit(dump($resultat));
     $tab = [];
     foreach ($resultat as $actor) {
         $tab[] = ['name' => $actor->city, 'data' => [(int) $actor->nb]];
     }
     return $tab;
 }