@extends('layouts.app') @section('title', 'Test Mode Simulator - ' . $service->name_en) @section('content')
Development Test Simulator Mode

Service Simulator Preview: {{ $service->name_en }}

Preview form inputs, document checklists, fee calculations, and workflow without creating live applications.

Back to Suite

Simulated Fee Computation Engine

Government Fee AED {{ number_format($calculatedFees['gov_fee'], 2) }}
Typing & Service Charge AED {{ number_format($calculatedFees['typing_fee'] + $calculatedFees['service_charge'], 2) }}
UAE 5% VAT AED {{ number_format($calculatedFees['vat_amount'], 2) }}
Total Service Price AED {{ number_format($calculatedFees['total_price'], 2) }}

Simulated Application Form Preview

@php $form = $service->forms->first(); @endphp @if($form)
@foreach($form->sections as $sec)

{{ $sec->section_name_en }}

@foreach($sec->fields as $fld)
@endforeach
@endforeach
@else

No dynamic form fields configured for simulation preview.

@endif
@endsection