@extends('backend.layouts.master') @section('title', $forum->name) @section('scripts') @endsection @section('content')

{{ $forum->name }}

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