Ekapp/skolehjem/resources/views/app/guides/index.blade.php

26 lines
635 B
PHP
Raw Normal View History

@extends("app.layout.base")
@section("title")
Vejledninger
@endsection
@section("content")
<style>
h2, h3, h4 {
margin-top: 0;
}
</style>
<main>
<h1 class="text-center sde-blue mt-0">Vejledninger</h1>
@if(!$guides->isEmpty())
@foreach($guides as $guide)
<h2 class="text-center sde-blue mt-0">{{ $guide->name }}</h2>
{!! $guide->guide_articles !!}
<hr class="w-100">
@endforeach
@else
2020-08-05 05:51:30 +00:00
<p style="margin: 0 18px;">Der er ingen vejledninger.</p>
@endif
</main>
@endsection