@extends('layouts.app') @section('pageTitle', 'Akun - List') @section('content') @include('notify')
{{csrf_field()}}
@if(!empty($akun->data)) @foreach($akun->data as $post) @endforeach @else @endif
# Nama Akun Jenis Akun Jenis Rekening Unit Deskripsi Status
{{ ++$i }} {{$post->name}} {{ (!empty($post->type)?$post->type:'-') }} {{ (!empty($post->acc_type)?$post->acc_type:'-') }} {{$post->unit}} {{$post->description}} {{$post->status}}
Belum ada data
{!! $metadata->pagination !!}
@endsection @section('custom_js') @endsection