@extends('layouts.admin.master') @section('content') @php $can_insert = auth_can(h_prefix('insert')); $can_update = auth_can(h_prefix('update')); $can_delete = auth_can(h_prefix('delete')); $can_active = auth_can(h_prefix('active')); $can_set_role = auth_can(h_prefix('set_role')); $can_bidang = auth_can(h_prefix('bantuan', 1)); @endphp
Data {{ $page_attr['title'] }}
@if ($can_insert)
Tambah Periode
@endif

{!! $can_set_role ? '' : '' !!}
No Nama Bantuan Dari SampaiSet SebagaiDetail Status Aksi
@endsection @section('stylesheet') @endsection @section('javascript') @php $resource = resource_loader( blade_path: $view, params: [ 'can_update' => $can_update ? 'true' : 'false', 'can_delete' => $can_delete ? 'true' : 'false', 'can_active' => $can_active ? 'true' : 'false', 'can_bidang' => $can_bidang ? 'true' : 'false', 'can_set_role' => $can_set_role ? 'true' : 'false', 'image_folder' => $image_folder, 'page_title' => $page_attr['title'], ], ); @endphp @endsection