@extends('layouts.app') @section('title', $post['title'] ) @section('content')

{{$post['title']}}

{{ $post['category']['name'] }}
{{ $post['created_at']}}
{!! $post['content'] !!}
Tags associƩs :
@foreach ($post['tags'] as $tag) {{$tag['name']}} @endforeach
@endsection