infojune/resources/views/choicebox.blade.php

20 lines
740 B
PHP

@extends('master')
@section('body')
<div class="row center">
<h1> {{ $category->name }}</h1>
<div class="col xl9 l9 m9 s12">
@foreach ($category->contents as $content)
<a class="waves-effect waves-light btn-large" href="/content/{{ $content->path }}">
{{ $content->name }}
</a>
@endforeach
@foreach ($category->subcategories as $subcategory)
<a class="waves-effect waves-light btn-large" href="/category/{{ $subcategory->path }}">
{{ $subcategory->name }}
</a>
@endforeach
</div>
</div>
@endsection