@php
$ppermName = strtolower($group['id']) . '_' . 'view';
@endphp
@if(!empty($group['children']))
@foreach($group['children'] as $child)
{{ $child['title'] }}
@php
if($child['actions'])
$actions = explode(",", $child['actions']);
else
$actions = [];
@endphp
@foreach($actions as $action)
@php
$permName = strtolower($child['id']) . '_' . $action;
@endphp
@endforeach