@extends('master.front') @section('title') {{$post->seo_title ?? $post->title}} @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