@extends('layouts.app') @section('content')

Choose a Category and start discussing!


@foreach ($forums as $i => $f) @php $class = $i % 2 === 0 ? 'evenrow' : 'oddrow'; @endphp @endforeach
Click Below to Select a Forum Subject
Topics: {{ count ($f->topicCount()->get() ) }}
Comments: @php $cCount = 0; foreach ($f->topicCount()->get() as $topic) { $cCount += $topic->commentCount(); } echo $cCount; @endphp
{{ $f->description }}
@endsection