@extends('layouts.layout-2')
@section('content')
Airline
| |
{{__('#')}} |
{{__('Name')}} |
{{__('E-Mail(s)')}} |
|
@foreach($airline as $value)
|
|
{{ $value->name }} |
{{ $value->name_full }} |
{!! \App\Services\Util::_implodeLines($value->contact_emails, " ") !!} |
|
@endforeach
@endsection