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