22 lines
623 B
PHP
22 lines
623 B
PHP
@extends('layout.print')
|
|
@section('title', $title)
|
|
@section('content')
|
|
<table class="table table-bordered table-hover table-striped m-0">
|
|
<thead>
|
|
<th>No</th>
|
|
<th>Kode</th>
|
|
<th>Nama periode</th>
|
|
<th>Keterangan</th>
|
|
</thead>
|
|
<?php $no = 1; ?>
|
|
@foreach ($rows as $key => $row)
|
|
<tr>
|
|
<td>{{ $no++ }}</td>
|
|
<td>{{ $row->kode_periode }}</td>
|
|
<td>{{ $row->nama_periode }}</td>
|
|
<td>{{ $row->keterangan }}</td>
|
|
</tr>
|
|
@endforeach
|
|
</table>
|
|
@endsection
|