@extends('layouts.authorized')
@section('title', $model::getTitle())
@section('headerCustom')
@php
$title = 'Daftar Penarikan Dana';
@endphp
@endsection
@section('content')
No. |
@foreach($model::INDEX_FIELD as $field)
{{ keyToLabel($field) }} |
@endforeach
Action |
@foreach($list as $index => $row)
{!! @$index+1 !!}. |
@foreach($model::INDEX_FIELD as $field)
{{ $row->getValue($field, '', '') }} |
@endforeach
|
@endforeach
@endsection