@extends('master') @section('title', 'Permukiman') @section('style') @endsection @section('header-konten') @endsection @section('konten')
Permukiman
@php $baca = explode(',', Auth::user()->role->baca); $ubah = explode(',', Auth::user()->role->ubah); $hapus = explode(',', Auth::user()->role->hapus); @endphp @if (in_array('23', $baca) | in_array('22', $ubah) | in_array('22', $hapus)) @endif @php // Menghitung nomor awal berdasarkan halaman saat ini $i = ($permukiman->currentPage() - 1) * $permukiman->perPage() + 1; @endphp @foreach ($permukiman as $data) @if (in_array('23', $baca) | in_array('22', $ubah) | in_array('22', $hapus)) @endif @php $i++; @endphp @endforeach
No Kepala Keluarga Alamat RT/RW Desa KecamatanAksi
{{ $i }} {{ $data->kepala_keluarga ?? '-' }} {{ $data->alamat ?? '-' }} {{ $data->rt ?? '-' }}/{{ $data->rw ?? '-' }} {{ $data->desa ?? '-' }} {{ $data->kecamatan ?? '-' }}
{{ $permukiman->appends(request()->query())->links() }}
Pilih wilayah yang ingin dicetak
@endsection @section('modal') @endsection @section('script') @include('my_components.alertToast') @endsection