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

Topic Create

@if($topics->count()) @foreach($topics as $topic) @endforeach
# "title Body User_id Category_id Reply_count View_count Last_reply_user_id Order Excerpt Slug OPTIONS
{{$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}}
{{csrf_field()}}
{!! $topics->render() !!} @else

Empty!

@endif
@endsection