summaryrefslogtreecommitdiff
path: root/resources/views/topicindex.blade.php
blob: 8ef211428e8ff0aacec31abc0fcbf567eac26c2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@extends('layouts.app')

@section('styles')
html {
	height: inherit;
}
@endsection

@section('content')

<div class="text-center container">
@foreach ($topics->get() as $topic)
      @if ( "" != $topic->name )
      <a href="{{ route('topic', $topic->name) }}" class="btn btn-lg btn-outline-primary">{{ ucwords($topic->name) }}</a>
      @endif
@endforeach
</div>
@endsection