@php $currentAirlineId = isset($currentAirlineId) ? $currentAirlineId : '' @endphp @php $emailGroups = getEmailNotificationGroup() @endphp
@lang("content.add_new_delay")

@lang("content.notification_group")

@php $id = isset($id) ? $id : "delays" @endphp @if (count($delays))

@lang("content.list")

@foreach($delays as $i => $each) @if ($each->deleted_at) @continue @endif @endforeach
SEL No @lang("content.group") @lang("content.group")(@lang("content.local")) @lang("content.airline") @lang("content.code") @lang("content.email")
@lang("content.notification_group")
@lang("content.description") @lang("content.description")(@lang("content.local")) @lang("content.explanation") @lang("content.explanation")(@lang("content.local")) @lang("content.actions")
@lang("content.numeric_alpha") @lang("content.alpha")
{!! Form::checkbox("selected", "1", false, ['class' => 'form-control flight', "data-id" => $each->id ]) !!} {{ $i + 1 }} {{ $each->group ? $each->group->name : "-" }} {{ $each->group ? $each->group->name_ln : "-" }} {{ $each->airline ? $each->airline->iata : "-" }} {{ $each->code }} {{ $each->alpha_code }} {{ $each->emailNotification ? $each->emailNotification->name : 'Empty' }} {{ $each->description ? $each->description : 'Empty' }} {{ $each->description_ln ? $each->description_ln : 'Empty' }} {{ $each->explanation ? $each->explanation : 'Empty' }} {{ $each->explanation_ln ? $each->explanation_ln : 'Empty' }}
@include("delay-code.layouts.confirmation") @endif