@extends('user.layouts.app') @php $user = Auth::user(); @endphp @section('content')

{{$data['tag_name']}}

@if(count($data['topic_list'])>0)
@foreach($data['topic_list'] as $topic) @php $topic_url = route('topicdetail',$topic->ft_slug); @endphp @if(Auth::check())

You'll get a notification whenever someone comments on this topic.

Turn OFF Notifications

You'll no longer get notifications about this topic.

Turn On Notifications

You won't see this topic in your timeline.

Undo
@endif
{{$topic->ft_title}} @if(Auth::check() && $user->id != $topic->user_id)
@endif

{!! Str::limit($topic->ft_desc, 500, " more..") !!}

@endforeach {{ $data['topic_list']->links() }}
@else

Not found topics.

@endif
@include('user/includes/topicSidebar')
@endsection @section('scripts') @stop