@extends ('../welcome') @section('content')
    @foreach ($allRoles->where('role_id', null) as $role)
  • {{ $role->name }} @if (count($role->childs) != 0) @include('roles.manageChild', ['childs' => $role->childs]) @endif
  • @endforeach
@endsection