@extends('layouts.admin') @section('title') Squadre @stop @section('content')
@foreach($teams as $team) @endforeach
Nome Punti penalità Esclusa Ritirata Stagione
{{$team->name}} {{$team->penality}} {{$team->excluded ? 'Si' : ''}} {{$team->day > 0 ? $team->day . " " . $team->type : ''}} {{$team->season->name}} Modifica @if(false)
@csrf @method('DELETE')
@endif
@stop @section('extra_js') @stop