@include('includes.admin.header')
@include('includes.admin.sidebar')
# |
Name |
Address |
Home Ground |
Contact Person |
Phone |
Manager |
Team Coach |
Action |
@if($teams->count() > 0)
@foreach($teams AS $team)
|
{{$team['name']}}
|
{{$team['address']}}
|
{{$team['home_ground']}}
|
{{$team['contact_person']}}
|
{{$team['phone']}}
|
{{$team['manager']}}
|
{{$team['team_coach']}}
|
|
@endforeach
@endif
@include('includes.admin.footer')