@if($topics->count())
# |
"title |
Body |
User_id |
Category_id |
Reply_count |
View_count |
Last_reply_user_id |
Order |
Excerpt |
Slug |
OPTIONS |
@foreach($topics as $topic)
{{$topic->id}} |
{{$topic->title}} |
{{$topic->body}} |
{{$topic->user_id}} |
{{$topic->category_id}} |
{{$topic->reply_count}} |
{{$topic->view_count}} |
{{$topic->last_reply_user_id}} |
{{$topic->order}} |
{{$topic->excerpt}} |
{{$topic->slug}} |
|
@endforeach
{!! $topics->render() !!}
@else
Empty!
@endif