1.Company Formation
Details about your company
@if ($buisness_ess)
@else
2.Business Essentials
Products & Services
@endif
@if ($summary)
@else
3.Summary
Details about your order
@endif
4.Delivery & Partner Services
Delivery & Partner Details
@php
$particular_step = App\Models\companyFormStep::where('order', $_GET['order'])
->where('section', 'company_formation')
->where('step', 'particulars')
->first();
@endphp
@if ($particular_step)
@else
Particulars
@endif
@php
$register_step = App\Models\companyFormStep::where('order', $_GET['order'])
->where('section', 'company_formation')
->where('step', 'register-address')
->first();
@endphp
@if ($register_step)
@else
Registered Address
@endif
@php
$buisness_step = App\Models\companyFormStep::where('order', $_GET['order'])
->where('section', 'company_formation')
->where('step', 'business-address')
->first();
@endphp
@if ($buisness_step)
@else
Business Address
@endif
@php
$appointment_step = App\Models\companyFormStep::where('order', $_GET['order'])
->where('section', 'company_formation')
->where('step', 'appointments')
->first();
@endphp
@if ($appointment_step)
@else
Appointment
@endif
@php
$doc_step = App\Models\companyFormStep::where('order', $_GET['order'])
->where('section', 'company_formation')
->where('step', 'document')
->first();
@endphp
@if ($doc_step)
@if (!empty($companyFormationStep->step_name))
Document
@else
Document
@endif
@else
Document
@endif