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

    {{ $post->title }}

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

    Created At: {{ $post->created_at }}

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


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