@extends('layouts.app') @section('title', 'Analysis Details') @push('styles') @endpush @section('content')

Analysis Details

ID: {{ $analysis->id }}

Company Information

Company Name: {{ $analysis->company_name }}
Business Field: {{ $analysis->business_field }}
Period: {{ $analysis->period }}
Currency: {{ $analysis->currency }}

Z-Score Analysis

{{ round($analysis->z_score, 2) }}
{{ ucfirst($analysis->z_category) }}

Z-Score Components

Component Value Weight
X1 - Working Capital / Total Assets {{ round($zScoreComponents['x1'], 4) }} 1.2
X2 - Retained Earnings / Total Assets {{ round($zScoreComponents['x2'], 4) }} 1.4
X3 - Earnings Before Tax / Total Assets {{ round($zScoreComponents['x3'], 4) }} 3.3
X4 - Equity Value / Total Liabilities {{ round($zScoreComponents['x4'], 4) }} 0.6
X5 - Sales / Total Assets {{ round($zScoreComponents['x5'], 4) }} 1.0
@if($financialData)

Financial Data

{{ json_encode($financialData, JSON_PRETTY_PRINT) }}
@endif
@endsection