@php $alphabet = range('A', 'Z'); if ($application->product_group->is_ggp) { $tabs = [ 'general' => 'General Information', 'service' => 'Service Requirement', 'product' => 'Product Requirement', 'certification' => 'Service Certifications and
Standards', // 'environment' => 'Environment Management', 'contact' => 'Contact Person', ]; } else { $tabs = [ 'general' => 'General Information', 'contact' => 'Contact Person', ]; } @endphp
@if ($application->product_group->is_ggp)
@include('pages.company.service.partials.form.a-general')
@include('pages.company.service.partials.form.b-service-requirement')
@include('pages.company.service.partials.form.c-product-requirement')
@include('pages.company.service.partials.form.d-service-certification')
{{--
@include('pages.company.service.partials.form.e-environment')
--}} @else
@include('pages.company.service.partials.form.general')
@endif
@include('pages.company.service.partials.form.contact-person')