@extends('layouts.app') @section('content')

{{ $pageNote }}

{!! Lang::get('core.Category_Name')!!} @php $cat_info = bsetecHelpers::fm_cats($row->category_id) @endphp @if(count($cat_info)>0) {{ ucfirst($cat_info->name) }} @endif
{!! Lang::get('core.Forum_Topic')!!} {{ $row->forum_topic }}
{!! Lang::get('core.Slug')!!} {{ $row->slug }}
{!! Lang::get('core.Forum_Content')!!} {{ strip_tags($row->forum_content) }}
{!! Lang::get('core.Created_By')!!} @php $info = bsetecHelpers::getuserinfobyid($row->created_by) @endphp @if(count($info)>0) {{ ucfirst($info->first_name) }} {{ ucfirst($info->last_name) }} @endif
{!! Lang::get('core.Status')!!} {!! $label !!}
{!! Lang::get('core.Created_At_Time')!!} {{ $row->created_at }}
{!! Lang::get('core.Updated_At_Time')!!} {{ $row->updated_at }}
@stop