コード例 #1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $municipios = \App\Municipio::orderBy('nome')->get();
     return compact('municipios');
 }
コード例 #2
0
 public function getMunicipios()
 {
     $municipios = Municipio::orderBy('nombre')->get();
     return response()->json($municipios)->setCallback(Input::get('callback'));
 }