Added content

This commit is contained in:
2018-06-02 00:28:44 +02:00
parent 5d31d0c084
commit e238e16c7d

View File

@@ -24,20 +24,23 @@
<table class="table table-hover">
<thead>
<tr>
<th scope="col">Nr.</th>
<th scope="col">Mannschaft A</th>
<th scope="col">Mannschaft B</th>
<th scope="col">Datum</th>
<th scope="col">Team A</th>
<th scope="col">Team B</th>
<th scope="col">Ergebnis</th>
<th scope="col">Tipp</th>
<th scope="col">Bearbeiten</th>
<th scope="col">Edit</th>
</tr>
</thead>
<tbody>
@foreach($matches as $match)
<tr>
<td>{!! $teams->find($match->teama) !!}</td>
<td>Column content</td>
<td>Column content</td>
<td>Column content</td>
<td>{!! $match->date !!}</td>
<td>{!! $teams->find($match->teama)->name !!}</td>
<td>{!! $teams->find($match->teamb)->name !!}</td>
<td>{!! $match->resualta . ':' . $match->resultb !!}</td>
<td>-</td>
<td>-</td>
</tr>
</tbody>
@endforeach