@extends('layout.front.app') @section('title', $blog->translation->title ) @section('description', $blog->translation->description) @section('page_img', $blog->img) @section('content')

@yield('title')

@yield('title') {{ formatDate($blog->created_at) }}
{!! $blog->translation->content !!}


    @if (!empty($blog->translation->tags)) @php $tags = explode(',', $blog->translation->tags); @endphp @foreach ($tags as $tag)
  • {{$tag}}
  • @endforeach @endif
@endsection