@extends('backend.layouts.master') @section('title', 'Forum Category') @section('styles')
@endsection @section('scripts') @endsection @section('content')
Backend
Forum
Category
{{ $category->name }}
{{ $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') !!}
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() }}
Delete Confirmation
×
Please confirm you would like to delete the selected forum.
@endsection