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

{{ $category->name }}

Details
ID
{{ $category->id }}
Name
{{ $category->name }}
Slug
{{ $category->slug }}
Sort Order
{{ $category->sort_order }}
Description
{{ $category->description }}
Created
{{ $category->created_at->diffForHumans() }}
Last Updated
{{ $category->updated_at->diffForHumans() }}
Actions
Edit {!! csrf_field() !!} {!! method_field('delete') !!}
Forums
@foreach($forums as $forum) @endforeach
ID Name Sort Order Threads Created Actions
{{ $forum->id }} {{ $forum->name }} {{ $forum->sort_order }} {{ $forum->threads_count }} {{ $forum->created_at->diffForHumans() }}
@endsection