@extends('backend.layouts.master') @section('title', 'Forum List') @section('styles') @endsection @section('scripts') @endsection @section('content')

Forums

Create Forum
{{ csrf_field() }}
{{ $errors->first('name') }}
{{ $errors->first('sort_order') }}
{{ $errors->first('category_id') }}
{{ $errors->first('description') }}
Forum Table
@foreach($forums as $forum) @endforeach
ID Name Sort Odrder Slug Thread Count Created Actions
{{ $forum->id }} {{ $forum->name }} {{ $forum->sort_order }} {{ $forum->slug }} {{ $forum->threads_count }} {{ $forum->created_at->diffForHumans() }}
{!! csrf_field() !!} {!! method_field('delete') !!}
@endsection