MIF_E31211810/resources/views/hitung/cetak.blade.php

41 lines
1.3 KiB
PHP

@extends('layout.print')
@section('title', $title)
@section('content')
<div class="container">
<div class="title">Hasil Perhitungan</div>
@if (count($results) > 0)
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
<th>Kode Produk</th>
<th>Nama Produk</th>
<th>Tanggal</th>
<th>Jumlah</th>
<th>MAPE</th>
</tr>
</thead>
<tbody>
@foreach ($results as $kode_produk => $items)
@foreach ($items as $item)
<tr>
<td>{{ $kode_produk }}</td>
<td>{{ $produks[$kode_produk] }}</td>
<td>{{ $item->tanggal }}</td>
<td>{{ $item->jumlah }}</td>
<td>{{ $item->mape }}</td>
</tr>
@endforeach
@endforeach
</tbody>
</table>
</div>
@else
<div class="alert alert-info">
<p>Tidak ada hasil perhitungan untuk periode ini.</p>
</div>
@endif
</div>
</div>
@endsection