@extends('be.layout-index')
@section('content')
@php
$modul="wilayah";
$modula="m_wilayah";
@endphp
|
id |
Kode |
Desa |
Kecamatan |
Kabupaten |
Propinsi |
@php
$datatableconf='
{
responsive: {
details: {
type: "column",
target: "tr"
}
},
"columnDefs": [
{
className: "control",
orderable: false,
targets:0,
width:"5%",
},
{
"targets": [1],
"visible": false,
"searchable": false,
}],
"order": [[ 1, "desc" ]],
"language": {
"search": "_INPUT_",
"searchPlaceholder": " Search"
},
}';
Session::flash('datatableconf',$datatableconf);
if (!empty($list)) {
foreach ($list as $row) {
@endphp
|
{!!$row->id!!} |
{!!$row->iddesa!!} |
{!!$row->nmdesa!!} |
{!!$row->nmkec!!} |
{!!$row->nmkab!!} |
{!!$row->nmprov!!} |
@php
}
}
@endphp
@endsection