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