@extends('frontend.layouts.app') @section('title') {{ $post->title }} @stop @section('content') @if (\App::getLocale() == 'my') @else @endif
@if (\App::getLocale() == 'my')

{{ $post->title }}

image-{{ $post->id }}
{!! $post->translate(app()->getLocale())->body !!}

More News

@foreach ($articles as $article)
image-{{ $article->slug }}

{{ $article->translate(app()->getLocale())->title }}

{!! Str::of(strip_tags($article->translate(app()->getLocale())->body))->limit(300) !!}
@endforeach
@else

{{ $post->title }}

image-{{ $post->id }}

{!! $post->translate(app()->getLocale())->body !!}

More News

@foreach ($articles as $article)
image-{{ $article->slug }}

{{ $article->translate(app()->getLocale())->title }}

{!! Str::of(strip_tags($article->translate(app()->getLocale())->body))->limit(300) !!}
@endforeach
@endif
@if (isset($previous)) @endif @if (isset($next)) @endif
@stop