@props([ 'financialData' => [], 'components' => [], 'showDerived' => true, 'showRatios' => true, 'compact' => false, 'currency' => 'Rp' ])
| Deskripsi | Nilai ({{ $currency }}) | @if($showRatios)Rasio | @endif
|---|---|---|
| ASET | ||
|
Aset Lancar
Kas, Piutang, Persediaan |
{{ formatCurrency($financialData['aset_lancar'] ?? 0, $currency) }} | @if($showRatios)@php $currentRatio = ($financialData['utang_lancar'] ?? 0) > 0 ? ($financialData['aset_lancar'] ?? 0) / ($financialData['utang_lancar'] ?? 1) : 0; @endphp Rasio Lancar: {{ number_format($currentRatio, 2) }} | @endif
|
Aset Tetap
Peralatan, Tanah, Bangunan |
{{ formatCurrency($financialData['aset_tetap'] ?? 0, $currency) }} | @if($showRatios)@endif |
| Total Aset | @php $totalAset = ($financialData['aset_lancar'] ?? 0) + ($financialData['aset_tetap'] ?? 0); @endphp {{ formatCurrency($totalAset, $currency) }} | @if($showRatios)@endif |
| LIABILITAS | ||
|
Utang Lancar
Utang Dagang, Utang Gaji |
{{ formatCurrency($financialData['utang_lancar'] ?? 0, $currency) }} | @if($showRatios)@endif |
|
Utang Jangka Panjang
Utang Bank, Obligasi |
{{ formatCurrency($financialData['utang_jangka_panjang'] ?? 0, $currency) }} | @if($showRatios)@endif |
| Total Utang | @php $totalUtang = ($financialData['utang_lancar'] ?? 0) + ($financialData['utang_jangka_panjang'] ?? 0); @endphp {{ formatCurrency($totalUtang, $currency) }} | @if($showRatios)@endif |
| EKUITAS | ||
| Nilai Buku Ekuitas | @php $ekuitas = $totalAset - $totalUtang; @endphp {{ formatCurrency($ekuitas, $currency) }} | @if($showRatios)@php $der = $ekuitas > 0 ? $totalUtang / $ekuitas : 0; @endphp DER: {{ number_format($der, 2) }} | @endif
| LABA RUGI | ||
|
Pendapatan
Penjualan/Pendapatan |
{{ formatCurrency($financialData['pendapatan'] ?? 0, $currency) }} | @if($showRatios)@endif |
|
Biaya Operasional
Biaya Gaji, Produksi |
{{ formatCurrency($financialData['biaya_operasional'] ?? 0, $currency) }} | @if($showRatios)@endif |
| Laba Sebelum Pajak | @php $laba = ($financialData['pendapatan'] ?? 0) - ($financialData['biaya_operasional'] ?? 0); @endphp {{ formatCurrency($laba, $currency) }} | @if($showRatios)@php $margin = ($financialData['pendapatan'] ?? 0) > 0 ? ($laba / ($financialData['pendapatan'] ?? 1)) * 100 : 0; @endphp Margin: {{ number_format($margin, 2) }}% | @endif
|
Prive
Pengambilan Pribadi |
{{ formatCurrency($financialData['prive'] ?? 0, $currency) }} | @if($showRatios)@endif |
| Laba Ditahan | @php $labaDitahan = $laba - ($financialData['prive'] ?? 0); @endphp {{ formatCurrency($labaDitahan, $currency) }} | @if($showRatios)@endif |
| Variabel | Rumus Komponen | Nilai |
|---|---|---|
| X1 | (Aset Lancar - Utang Lancar) / Total Aset | {{ number_format($components['x1'] ?? 0, 4) }} |
| X2 | Laba Ditahan / Total Aset | {{ number_format($components['x2'] ?? 0, 4) }} |
| X3 | Laba Sebelum Pajak dan Bunga / Total Aset | {{ number_format($components['x3'] ?? 0, 4) }} |
| X4 | Nilai Buku Ekuitas / Total Hutang | {{ number_format($components['x4'] ?? 0, 4) }} |
| X5 | Pendapatan / Total Aset | {{ number_format($components['x5'] ?? 0, 4) }} |
| Z-Score | {{ number_format($components['z_score'] ?? 0, 4) }} | |