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