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

25 lines
600 B
PHP

@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>
@foreach($guides as $guide)
<h2 class="text-center sde-blue mt-0">{{ $guide->name }}</h2>
{!! $guide->guide_articles !!}
<hr class="w-100">
@endforeach
@if(count($guides) < 1)
<p style="margin: 0 18px;">Der er ingen vejledninger.</p>
@endif
</main>
@endsection