@extends('layouts.grid') @section('content')
@foreach ($teams as $team)
{{ $team->team_name }}
{{ $team->div_name }}    [{{ $team->team_min }}-{{ $team->team_avg }}]

@foreach ($team->players as $P)
{{ $P->str_name }}
{{ $P->id }}
{{ $P->classif_code }}
{{ $P->classif_value }}
@endforeach

{{ $team->div_name }}
@endforeach

@endsection