@extends('layouts.app') @section('title', 'Compare Analysis') @section('content')
| Period: | {{ $analysis1->period }} |
| Z-Score: | {{ round($analysis1->z_score, 2) }} |
| Category: | {{ ucfirst($analysis1->z_category) }} |
| X1: | {{ round($analysis1->x1, 4) }} |
| X2: | {{ round($analysis1->x2, 4) }} |
| X3: | {{ round($analysis1->x3, 4) }} |
| X4: | {{ round($analysis1->x4, 4) }} |
| X5: | {{ round($analysis1->x5, 4) }} |
| Period: | {{ $analysis2->period }} |
| Z-Score: | {{ round($analysis2->z_score, 2) }} |
| Category: | {{ ucfirst($analysis2->z_category) }} |
| X1: | {{ round($analysis2->x1, 4) }} |
| X2: | {{ round($analysis2->x2, 4) }} |
| X3: | {{ round($analysis2->x3, 4) }} |
| X4: | {{ round($analysis2->x4, 4) }} |
| X5: | {{ round($analysis2->x5, 4) }} |