{{ Form::label('icao', 'ICAO:') }}

{{ $airlines->icao }}

{{ Form::label('iata', 'IATA:') }}

{{ $airlines->iata }}

{{ Form::label('name', 'Name:') }}

{{ $airlines->name }}

{{ Form::label('logo', 'Logo URL:') }}

{{ $airlines->logo }}

{{ Form::label('active', 'Active:') }}

{{ $airlines->active }}

{{ Form::label('created_at', 'Created At:') }}

{{ show_datetime($airlines->created_at) }}

{{ Form::label('updated_at', 'Updated At:') }}

{{ show_datetime($airlines->updated_at) }}