@extends('admin.layouts.app') @section('breadcrumb') @endsection @section('css') @endsection @section('content') @if(Session::has('message'))
{{Session::get('message')}}
@elseif(Session::has('message_error'))
{{Session::get('message_error')}}
@endif

{{$titulo}}

@foreach($hoteles as $key) @endforeach
# Nombre Estrellas Departamento Municipio
{{$i++}} {{$key->nombre}} @if($key->estrellas==0) {{$key->estrellas}} @else @for($j=0;$j<$key->estrellas;$j++) @endfor @endif {{$key->ubicacion->departamento->departamento}} {{$key->ubicacion->municipio->municipio}}
@endsection @section('script') @endsection