v1.4.8j Fix manifest and meta tags NO

This commit is contained in:
2020-11-23 12:53:19 +01:00
parent 03c1562f5b
commit dc314bb2bc
6 changed files with 34 additions and 14 deletions
@@ -147,14 +147,14 @@
</div>
<h1 class="text-white ml-auto mr-2" style="font-size: 3.5rem;">{{ count(\App\Guide::all()) }}</h1>
</div>
<table class="tbl mt-1">
<table class="tbl mt-1 ">
<tr>
<th class="text-white text-center letterSpaceTable" style="background-color: #152f4b;">Seneste Vejledninger</th>
</tr>
@if(count(\App\Guide::all()) > 0)
@for($i = 0; $i < 10 && $i < count(\App\Guide::query()->orderByDesc("id")->get()); $i++)
<tr class="letterSpaceTable">
<td class="fixOverflow">{!! \App\Helpers::closetags(substr(ucfirst(strtolower(\App\Guide::query()->orderByDesc("id")->get()[$i]->name)), 0, 45) ) !!}</td>
<tr class="letterSpaceTable" style="overflow: hidden">
<td>{!! \App\Helpers::closetags(substr(ucfirst(strtolower(\App\Guide::query()->orderByDesc("id")->get()[$i]->name)), 0, 45) ) !!}</td>
</tr>
@endfor
@else