@extends('layouts.app') @section('pageTitle', 'Kategori Transaksi - List') @section('content') @include('notify')
{{csrf_field()}}
@if(!empty($katrans->data)) @foreach($katrans->data as $post) @endforeach @else @endif
# Kategori Tipe Kelompok Akun Status
{{ ++$i }} {{$post->name}} {{$post->tipe}} {{ $post->code }} @php $j =1; $total_akun = $post->total; @endphp @foreach($post->akun as $val) @if($j <= 2) {{$val->nama_akun}} @if($j++ < $total_akun), @endif @endif @endforeach @if($total_akun > 2) ... @endif {{$post->status}}
Belum ada data
{!! $metadata->pagination !!}
@endsection @section('custom_js') @endsection