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

{{ $article->subject }}

Details
ID
{{ $article->id }}
Name
{{ $article->subject }}
Status
{{ $article->status->name }}
Slug
{{ $article->slug }}
Category
{{ $article->category->name }}
Author
{{ $article->user->name }}
Created
{{ $article->created_at->diffForHumans() }}
Last Updated
{{ $article->updated_at->diffForHumans() }}
Actions
Edit {!! csrf_field() !!} {!! method_field('delete') !!}
Image
{{ $article->subject }}
Body

{!! nl2br(e($article->body)) !!}

@endsection