@lang('common.topic') | @lang('common.category') | @lang('common.comment') | @lang('common.views') | @lang('common.action') |
---|---|---|---|---|
{{ @$forum->title }}{{ @$forum->createdBy->full_name }} |
{{ @$forum->forumTitle->forumCategory->title }} | {{ @$forum->forumComments()->count() }} | {{ @$forum->total_views}} |
@php
$routeList = [];
$routeList[] = ''. __('common.view') .'';
if(auth()->user()->id == $forum->created_by) {
$routeList[] = ''. __('common.edit') .'';
$routeList[] = ''. __('common.delete') .'';
}
$routeListHtml = implode('', $routeList);
@endphp
|
@lang('common.no_data_found') |