@extends('layouts.backend.app') @push('header') @endpush @section('content')
@if ($errors->any()) @foreach ($errors->all() as $error) @endforeach @endif
$post->image

{{$post->title}}

{{$post->category->name}}

Criado Em : {{$post->created_at}}

Tags
@if ($post->tags) @foreach ($post->tags as $tag) {{$tag->name}} @endforeach @endif

{!!$post->body!!}
@endsection @push('footer') {!! Toastr::message() !!} @endpush