@php
$company_form = App\Models\companyFormStep::where('order',$_GET['order'])->where('section','company_formation')->first();
$buisness_ess = App\Models\companyFormStep::where('order',$_GET['order'])->where('section','BusinessEssential')->first();
$summary = App\Models\companyFormStep::where('order',$_GET['order'])->where('section','Review')->first();
@endphp
@if ($summary)
@else
3.Summary
Details about your order
@endif
4.Delivery & Partner Services
Delivery & Partner Details
@php
$buisness_bank_step = App\Models\companyFormStep::where('order',$_GET['order'])->where('section','BusinessEssential')->where('step','business-banking')->first();
@endphp
@if ($buisness_bank_step)
@else
Business Banking
@endif
@php
$buisness_service_step = App\Models\companyFormStep::where('order',$_GET['order'])->where('section','BusinessEssential')->where('step','business-service')->first();
@endphp
@if ($buisness_service_step)
@else
Business Services
@endif
@php
$optional_step = App\Models\companyFormStep::where('order',$_GET['order'])->where('section','BusinessEssential')->where('step','other-extras')->first();
@endphp
@if ($optional_step)
@else
@endif