v1.4.1 - Small fixes

This commit is contained in:
frederikpyt 2020-10-07 08:25:00 +02:00
parent 159c3f3764
commit 1d92c12ecf
1 changed files with 6 additions and 1 deletions

View File

@ -6,7 +6,7 @@
@endsection @endsection
@section("path") @section("path")
<a href="{{ route('guides.index') }}" class="text-white">Opret Vejledning</a> / <a href="{{ route('guides.index') }}" class="text-white">Vis Vejledning</a> /
@endsection @endsection
@section("content") @section("content")
@ -47,6 +47,11 @@
@endif @endif
</tr> </tr>
@endforeach @endforeach
@if(count($guides) == 0)
<tr>
<td colspan="4">Ingen vejledninger</td>
</tr>
@endif
</table> </table>
</div> </div>