getMap(); $cityAPI->saveMap($citiesMap); return new CityCollection(City::all()); } /** * Show the form for creating a new resource. */ public function create() { // } /** * Store a newly created resource in storage. */ public function store(StoreCityRequest $request) { // } /** * Display the specified resource. */ public function show(City $city) { return new CityResource($city); } /** * Show the form for editing the specified resource. */ public function edit(City $city) { // } /** * Update the specified resource in storage. */ public function update(UpdateCityRequest $request, City $city) { // } /** * Remove the specified resource from storage. */ public function destroy(City $city) { // } }