@extends('layouts.frontend') @section('content')
{{ trans('cruds.hotelCityCode.title_singular') }} {{ trans('global.list') }}
@foreach($hotelCityCodes as $key => $hotelCityCode) @endforeach
{{ trans('cruds.hotelCityCode.fields.id') }} {{ trans('cruds.hotelCityCode.fields.city') }} {{ trans('cruds.hotelCityCode.fields.destination') }} {{ trans('cruds.hotelCityCode.fields.state_province') }} {{ trans('cruds.hotelCityCode.fields.state_province_code') }} {{ trans('cruds.hotelCityCode.fields.country') }} {{ trans('cruds.hotelCityCode.fields.country_code') }}  
{{ $hotelCityCode->id ?? '' }} {{ $hotelCityCode->city ?? '' }} {{ $hotelCityCode->destination ?? '' }} {{ $hotelCityCode->state_province ?? '' }} {{ $hotelCityCode->state_province_code ?? '' }} {{ $hotelCityCode->country ?? '' }} {{ $hotelCityCode->country_code ?? '' }}
@endsection @section('scripts') @parent @endsection