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

{{ $category->name }}

Details
ID
{{ $category->id }}
Name
{{ $category->name }}
Slug
{{ $category->slug }}
Sort Order
{{ $category->sort_order }}
Created
{{ $category->created_at->diffForHumans() }}
Last Updated
{{ $category->updated_at->diffForHumans() }}
Actions
Edit {!! csrf_field() !!} {!! method_field('delete') !!}
Artciles
@foreach($category->articles as $article) @endforeach
ID Subject Author Created Actions
{{ $article->id }} {{ $article->subject }} {{ $article->user->name }} {{ $article->created_at->diffForHumans() }}
@endsection