@extends('be.layout-index')
@section('content')
@php
$modul="Dokumen Perbaikan Laporan";
$modula="m_kajianawal";
@endphp
|
id |
Dokumen |
Tgl Perbaikan |
Actions |
@php
if (!empty($list)) {
$datatableconf='
{
responsive: {
details: {
type: "column",
target: "tr"
}
},
"columnDefs": [
{
className: "control",
orderable: false,
targets:0,
},
{
"targets": [1],
"visible": false,
"searchable": false,
}],
"order": [[ 1, "desc" ]],
"language": {
"search": "_INPUT_",
"searchPlaceholder": " Search"
},
}';
Session::flash('datatableconf',$datatableconf);
foreach ($list as $row) {
@endphp
|
{!!$row->id!!} |
{!!html_entity_decode($row['note'])!!}
|
{!!konversi_tanggal('j M Y',$row['tgl'])!!}
|
|
@php
}
}
@endphp
@endsection