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"> <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