@extends('backend.layouts.master') @section('title', 'Joke Category | ' . $category->name) @section('styles') @endsection @section('scripts') @endsection @section('content')

Joke Category | {{ $category->name }}

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