@extends('layouts.admin.master') @section('content') @php $can_excel = auth_can(h_prefix('excel')); $can_update = auth_can(h_prefix('update')); $is_admin = auth() ->user() ->hasRole(config('app.super_admin_role')); @endphp
Data {{ $page_attr['title'] }}
@if ($can_excel) @endif @if ($can_update) @endif

No Foto Nama Umur Jenis Kelamin Kelurahan Alamat Kontak Status Verifikasi
@endsection @section('stylesheet') @endsection @section('javascript') @php $resource = resource_loader( blade_path: $view, params: [ 'can_update' => $can_update ? 'true' : 'false', 'is_admin' => $is_admin ? 'true' : 'false', 'page_title' => $page_attr['title'], ], ); @endphp @endsection