@extends('layouts.admin') @section('title') Squadre @stop @section('content')
| 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) {!! Form::open(array('class' => 'form-inline', 'method' => 'DELETE', 'route' => array('teams.destroy', $team->id))) !!} {!! Form::close() !!} @endif |