@extends('layouts.app')
@section('title', 'Field Analysis — ' . $application->applicant_name)
@push('styles')
@endpush
@section('content')
{{-- ── Header ───────────────────────────────────────────────────── --}}
Field Analysis (FA)
{{ $application->applicant_name }}
—
{{ $application->id }}
{!! $application->status_badge !!}
{{-- ── Flash messages (in-page; layout also shows them in content-area) ── --}}
@if(session('fa_success'))
{{ session('fa_success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
@if($errors->any())
@foreach($errors->all() as $e)
- {{ $e }}
@endforeach
@endif
{{-- ── Catatan dari DA ──────────────────────────────────────────── --}}
@if($application->verifikasiDa?->catatan_untuk_fa)
Catatan dari Desk Analysis:
{{ $application->verifikasiDa->catatan_untuk_fa }}
@endif
{{-- ── Tab Nav Bar (sticky, scrollable) ───────────────────────── --}}
@php
$sectionStatuses = $fa->sectionStatuses();
$tabDefs = [
1 => ['label' => 'Identitas', 'icon' => 'bi-person-vcard'],
2 => ['label' => 'Lahan', 'icon' => 'bi-geo'],
3 => ['label' => 'Peta', 'icon' => 'bi-map'],
4 => ['label' => 'Biaya', 'icon' => 'bi-calculator'],
5 => ['label' => 'Tallysheet', 'icon' => 'bi-table'],
6 => ['label' => 'Foto & Submit','icon' => 'bi-camera-fill'],
];
@endphp
@foreach($tabDefs as $n => $tab)
@php
$status = $sectionStatuses[$n] ?? 'empty';
$statusIcon = match($status) {
'done' => '',
'partial' => '',
default => '',
};
@endphp
-
@endforeach
{{-- ── Tab Content ──────────────────────────────────────────────── --}}
@include('fa.sections.section1', ['application' => $application, 'fa' => $fa])
@include('fa.sections.section2', ['application' => $application, 'fa' => $fa])
@include('fa.sections.section3', ['application' => $application, 'fa' => $fa])
@include('fa.sections.section4', ['application' => $application, 'fa' => $fa])
@include('fa.sections.section5', ['application' => $application, 'fa' => $fa])
@include('fa.sections.section6', ['application' => $application, 'fa' => $fa])
{{-- end container --}}
{{-- ── Floating Submit Button ──────────────────────────────────── --}}
@php
$allSectionsDone = $fa->isAllSectionsDone();
@endphp