@extends('Layout::app') @push('css') @endpush @section('content') @include('Support::frontend.layouts.topic.search-form')
@foreach($rows as $topic) @include('Support::frontend.layouts.topic.loop') @endforeach
{{$rows->appends(request()->query())->links()}} @if($rows->total() > 0) {{ __("Showing :from - :to of :total topics",["from"=>$rows->firstItem(),"to"=>$rows->lastItem(),"total"=>$rows->total()]) }} @endif
@if(!count($rows))
{{__("No topic found")}}
@endif
@include('Support::frontend.layouts.topic.sidebar')
@endsection