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