@extends('backEnd.master') @section('title') @lang('common.my_topics') @endsection @section('mainContent') @push('css') @endpush

@lang('common.select_criteria')

{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'user-forum-mytopic-search', 'method' => 'POST']) }}
@if ($errors->has('forum_category_id')) {{ @$errors->first('forum_category_id') }} @endif
@if ($errors->has('forum_title_id')) {{ @$errors->first('forum_title_id') }} @endif
@if ($errors->has('forum_topic_id')) {{ @$errors->first('forum_topic_id') }} @endif
{{ Form::close() }}

@lang('common.my_topic_list')

@foreach($forums as $my_topic) @endforeach
@lang('common.forum_category') @lang('common.forum_title') @lang('common.forum_topic') @lang('common.comment') @lang('common.view') @lang('common.action')
{{@$my_topic->forumTitle->forumCategory->title}} {{@$my_topic->forumTitle->title }} {{@$my_topic->title }} {{@$my_topic->forumComments()->count() }} {{@$my_topic->total_views }} @php $routeList = []; $routeList[] = ''. __('common.view') .''; $routeList[] = ''. __('common.edit') .''; $routeList[] = ''. __('common.delete') .''; $routeListHtml = implode('', $routeList); @endphp
@endsection @include('backEnd.partials.data_table_js') @push('script') @endpush