Exemple #1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index($id = null)
 {
     if ($id == null) {
         $data['paises'] = Pais::orderBy('id', 'asc')->get();
         return $data;
     } else {
         return $this->show($id);
     }
 }
Exemple #2
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index($id = null)
 {
     if ($id == null) {
         $data['departamentos'] = Departamento::with('pais')->orderBy('id', 'asc')->get();
         $data['paises'] = Pais::orderBy('id', 'asc')->get();
         return $data;
     } else {
         return $this->show($id);
     }
 }