@extends('layouts.app') @section('content')
@if (Session::has('message'))
{{ Session::get('message') }}
@endif
@if(!empty($teams)) @foreach($teams as $key => $team) @endforeach @endif
Team Id Parent 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'] }}
@endsection @pushOnce('styles') @endPushOnce @pushOnce('scripts') @endPushOnce