@extends('layouts.apex') @section('title', 'Status Kolam') @section('content')
Keterangan Warna:
Hijau Belum Panen
Kuning Panen Partial
Merah Panen Total
Filter Status:
{{ count($kolams) }} kolam ditampilkan
Tampilkan:
/hal Grid:
1-10 dari {{ count($kolams) }}
@foreach($kolams as $kolam)

{{ $kolam->nama }}

{{ number_format($kolam->luas, 0) }} M²
DoC : {{ number_format($kolam->doc, 0) }} Hari
Tebar / M² : {{ number_format($kolam->tebar_per_m2, 0) }}
MBW : {{ number_format($kolam->mbw, 2) }} Gr
ADG : {{ number_format($kolam->adg, 2) }} Gr
Total Panen : {{ number_format($kolam->total_panen, 2) }} Kg
Total Pakan : {{ number_format($kolam->total_pakan, 2) }} Kg
FCR : {{ number_format($kolam->fcr, 2) }}
Productivity : {{ number_format($kolam->luas > 0 ? $kolam->total_panen / $kolam->luas : 0, 2) }} Kg/m²
@endforeach
@push('scripts') @endpush @endsection