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