@extends('layouts.app')
@section('content')
Choose a Category and start discussing!
|
Click Below to Select a Forum Subject
|
@foreach ($forums as $i => $f)
@php $class = $i % 2 === 0 ? 'evenrow' : 'oddrow'; @endphp
|
Topics: {{ count ($f->topicCount()->get() ) }}
Comments:
@php
$cCount = 0;
foreach ($f->topicCount()->get() as $topic)
{
$cCount += $topic->commentCount();
}
echo $cCount;
@endphp
{{ $f->description }}
|
@endforeach
@endsection