@if (Session::has('message'))
{{ Session::get('message') }}
@endif
| Team Id |
Parent |
Team |
@if(!empty($teams))
@foreach($teams as $key => $team)
|
{{$team['id']}}
|
@php
if($team['is_root']==1){
echo "Root Team";
}else if(!empty($team['parent_id'])){
echo $team['parents']['team_name'];
}
@endphp
|
{{ $team['team_name'] }} |
@endforeach
@endif