@extends('templates.dashboard') @section('isi')

{{ $title }}

@foreach ($kategori as $key => $kat) @endforeach
No. Nama Jumlah Status Actions
{{ ($kategori->currentpage() - 1) * $kategori->perpage() + $key + 1 }}. {{ $kat->name }} {{ $kat->name }} Rp {{ number_format($kat->jumlah) }} @if ($kat->active == 1) Aktif @else Non-Aktif @endif
  • @method('delete') @csrf
{{ $kategori->links() }}

@endsection