@extends('master.front') @section('title') {{ __('Blog Details') }} @endsection @php if ($post->meta_keywords) { $keyword = str_replace(['value', '{', '}', '[', ']', ':', "\""], '', $post->meta_keywords); } else { $keyword = $post->title; } @endphp @section('meta') @endsection @section('content')

{{ $post->title }}

{!! $post->details !!}
@if ($post->tags)
{{ __('Tags :') }} @foreach (explode(',', $post->tags) as $tag) @if ($loop->last) {{ $tag }} @else {{ $tag }}, @endif @endforeach
@endif
{{ __('Share') }}:
@if ($setting->is_disqus == 1)
@endif @if ($post->category->posts->where('id', '!=', $post->id)->count() > 0)

{{ __('You May Also Like') }}

@endif
@endsection