@foreach ($group['permissions'] as $permission)
@php
$action = explode(' ', $permission->name, 2)[0];
$actionIcons = [
'lihat' => 'fa-eye',
'buat' => 'fa-plus',
'edit' => 'fa-pen',
'detail' => 'fa-circle-info',
'hapus' => 'fa-trash',
'blokir' => 'fa-ban',
];
$actionColors = [
'lihat' => '#3b82f6',
'buat' => '#10b981',
'edit' => '#f59e0b',
'detail' => '#8b5cf6',
'hapus' => '#ef4444',
'blokir' => '#ef4444',
];
@endphp
@endforeach