@extends('layout.app') @section('title', $title) @section('content')
@if (count($results) > 0)
@foreach ($results as $kode_produk => $rows) @foreach ($rows as $item) @endforeach @endforeach
Kode Produk Nama Produk Tanggal Jumlah MAPE Akurasi
{{ $kode_produk }} {{ $produks[$kode_produk] }} {{ date('M-Y', strtotime($item->tanggal)) }} {{ number_format($item->jumlah, 2) }} {{ number_format($item->mape * 100, 2) }}% {{ $item->akurasi }}
@else

Tidak ada hasil perhitungan untuk periode ini.

@endif
@endsection