@extends('client.layout.master') @php use App\Models\Translation; $locale = app()->getLocale(); @endphp @section('title', Translation::getValue('blog_detail', $locale)) @section('content') @php use App\Models\Translation; $locale = app()->getLocale(); @endphp {{ $blog->getTranslation('title', $locale) }} {{ Translation::getValue('breadcrumb_home', $locale) }} {{ Translation::getValue('blog_title', $locale) }} {{ $blog->getTranslation('title', $locale) }} {{ $blog->created_at->format('F d, Y') }} {{ $blog->getTranslation('title', $locale) }} {!! $blog->getTranslation('description', $locale) !!} @endsection