@extends('layouts.authorized')
@section('title', 'Blogs')
@section('headerCustom')
@php
$title = $model::getTitleIndex();
@endphp
@endsection
@section('content')
Judul |
Status |
Aksi |
@foreach ($list as $item)
@foreach($model::INDEX_FIELD as $field)
{{ $item->getValue($field, '', '') }} |
@endforeach
|
@endforeach
@endsection
@section('jsCustom')
@endsection