@extends('templates.dashboard')
@section('isi')
No. |
Nama |
Jumlah |
Status |
Actions |
@foreach ($kategori as $kat)
{{ $loop->iteration }} |
{{ $kat->name }} |
{{ $kat->name }} |
Rp {{ number_format($kat->jumlah) }} |
@if ($kat->active == 1)
Aktif
@else
Non-Aktif
@endif
|
|
@endforeach
{{ $kategori->links() }}
@endsection