@extends('master')
@section('title', 'Kecamatan')
@section('header-konten')
@endsection
@section('konten')
No |
Nama Kecamatan |
Jumlah Desa |
@if (in_array('17', $ubah) | in_array('17', $hapus))
Aksi |
@endif
@php
$i = 1;
@endphp
@foreach ($data as $dt)
{{ $i }} |
{{ $dt->nama_kecamatan }} |
{{ $dt->desa->count() }} |
@if (in_array('17', $ubah) | in_array('17', $hapus))
|
@endif
@php
$i++;
@endphp
@endforeach
@endsection
@section('modal')
@php
$tambah = explode(',', Auth::user()->role->tambah);
$ubah = explode(',', Auth::user()->role->ubah);
$hapus = explode(',', Auth::user()->role->hapus);
@endphp
@if (in_array('17', $tambah))
@endif
@if (in_array('17', $ubah))
@endif
@endsection
@section('script')
@include('my_components.alertToast')
@endsection