Added content
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user