@extends('user/app') @section('bg-img',asset('user/img/post-bg.jpg')) @section('title', $postslug->title) @section('subheading',$postslug->subtitle) @section('main-content')
Created at {{ $postslug->created_at }} @foreach ($postslug->categories as $category) {{ $category->name }} @endforeach

{!! htmlspecialchars_decode($postslug -> body) !!}

{{-- Tag clouds --}}

Tag Clouds

@foreach ($postslug->tags as $tag) {{ $tag->name }} @endforeach


@endsection