@extends('layouts.panel.base') @section('airport-active', 'kt-menu__item--active') @section('title', 'Detalles del Aeropuerto') @section('content')

Aeropuertos

Detalles del Aeropuerto

@if(Session::has('success')) @endif

Información General

Nombre: {{ ucwords($airport->name) }}

Código IATA: {{ ucwords($airport->iso_iata) }}

País: {{ ucwords($airport->country->name) }}

Estado: {{ ucwords($airport->state->name) }}

Ciudad: {{ ucwords($airport->city->name) }}

Historial

@if(count($history)>0) @foreach($history as $key => $value) @endforeach
Estatus Usuario Fecha
{{ $value->status }} @if(isset($datos->motivo) || isset($datos->comentario)) {!! '
'.$mensaje.'' !!} @endif
{{ ucwords($value->user->name) }} {{ ucwords($value->user->last_name) }} {{ date_format(date_create($value->created_at),"d/m/Y H:i:s") }}
@else @endif
@endsection @section('js') @endsection