{{ $post->title }}
{!! $post->details !!}
@if ($post->tags)
{{ __('Tags :') }}
@foreach (explode(',', $post->tags) as $tag)
@if ($loop->last)
{{ $tag }}
@else
{{ $tag }},
@endif
@endforeach
@endif