@extends('layouts.app') @section('title', __('accounting::lang.location_mapping_health')) @section('content') @include('accounting::layouts.nav')

@lang('accounting::lang.location_mapping_health')

@lang('messages.back')

@lang('accounting::lang.location_mapping_health_summary', ['complete' => $report['complete_locations'] ?? 0, 'total' => $report['total_locations'] ?? 0])

@csrf
@forelse(($report['locations'] ?? []) as $locationReport) @foreach($locationReport['scenarios'] as $scenario) @endforeach @empty @endforelse
@lang('business.location') @lang('accounting::lang.scenario') @lang('sale.status') @lang('accounting::lang.missing_mappings')
{{ $locationReport['location_name'] }} {{ $scenario['label'] }} @if($scenario['complete']) @lang('accounting::lang.ready') @else @lang('accounting::lang.not_ready') @endif {{ !empty($scenario['missing']) ? implode(', ', $scenario['missing']) : '-' }}
@lang('accounting::lang.no_data')
@endsection