@extends('main') @section('title', ' Topics') @section('Breadcrumbs') {!! Breadcrumbs::render('maintopics') !!} @endsection @section('SearchLetters') @include('partials._searchletter') @endsection @section('content')
@foreach ($topics as $topic)
{{--
User Avatar
--}}
{{count($topic->microunitsapproved)}}
{{Lang::choice('messages.microunits', $topic->microunitsapproved)}}
{{ count($topic->suitesapproved) }}
{{Lang::choice('messages.suites', $topic->suitesapproved)}}
{{$topic->viewcounter}}
{{Lang::choice('messages.views', $topic->viewcounter)}}
@endforeach
{{$topics->links()}}
@endsection