@php $eachPerc = count($services) > 0 ? round(75 / count($services), 2) : 0 @endphp
@php $rest = 100 - 10 - (count($services) * $eachPerc) @endphp
@php $maxWidth = count($services) * 100 @endphp
@php $j = 0 @endphp
{!! Form::open(['method' => 'POST', 'class' => 'smart-form edit-forms', 'data-state' => 'Edit', 'url' => url("staff/{$userId}?sv=1") ]) !!}
@foreach($airlines as $airlineId => $airline)
@if ($j % 7 == 0)
{{-- --}}
@lang("content.airline")
/ @lang("content.service") |
@foreach($services as $id => $service)
{{ $service }}
|
@endforeach
{{-- --}}
@endif
{{-- --}}
{{ $airline }}
(ALL)
|
@foreach($services as $serviceId => $service)
|
@endforeach
{{-- --}}
{{--
--}}
@php $j++ @endphp
@endforeach
{!! Form::close() !!}