Fixed Vector 0x01

This commit is contained in:
Sebastian Davaris 2020-06-26 13:17:18 +02:00
parent 22c578bc4b
commit a84f1729f0
1 changed files with 9 additions and 9 deletions

View File

@ -24,15 +24,15 @@
</tr> </tr>
@foreach($menuPlans as $menuplan) @foreach($menuPlans as $menuplan)
<tr> <tr>
<th>{{$menuplan->monday}}</th> <td>{{$menuplan->monday}}</td>
<th>{{$menuplan->tuesday}}</th> <td>{{$menuplan->tuesday}}</td>
<th>{{$menuplan->wednesday}}</th> <td>{{$menuplan->wednesday}}</td>
<th>{{$menuplan->thursday}}</th> <td>{{$menuplan->thursday}}</td>
<th>{{$menuplan->friday}}</th> <td>{{$menuplan->friday}}</td>
<th>{{$menuplan->saturday}}</th> <td>{{$menuplan->saturday}}</td>
<th>{{$menuplan->sunday}}</th> <td>{{$menuplan->sunday}}</td>
<td><a href=""><img class="w-100" src="{{ asset('/images/icons/pencil-dark.svg') }}" alt="Update"></a></td> <td><a href=""><img class="w-100" src="{{ asset('/images/icons/pencil-dark.svg') }}" alt="Update"></a></td>
<td><a href=""><img class="w-100" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></a></td> <td><a href=""><img class="w-100" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></a></td>
</tr> </tr>
@endforeach @endforeach
</table> </table>