infojune/resources/views/choicebox.blade.php

21 lines
722 B
PHP
Raw Normal View History

2020-10-10 12:12:44 +02:00
@extends('master')
@section('body')
<div id="choicebox">
<h1> {{ $category->name }}</h1>
<div class="cb-buttons">
@foreach ($category->contents as $content)
2020-10-15 12:23:13 +02:00
<a class="waves-effect waves-light btn-large" href="/content/{{ $content->href }}">
2020-10-10 12:12:44 +02:00
{{ $content->name }}
</a>
@endforeach
@foreach ($category->subcategories as $subcategory)
2020-10-15 12:23:13 +02:00
<a class="waves-effect waves-light btn-large" href="/category/{{ $subcategory->path }}">
2020-10-10 12:12:44 +02:00
{{ $subcategory->name }}
</a>
@endforeach
</div>
</div>
@endsection