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

{{ $post->translate()->title }}

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

{{ $post->date }}

More Announcements

@foreach ($announcements as $ann)

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

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

{{ $post->translate()->title }}

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

{{ $post->date }}

More Announcements

@foreach ($announcements as $ann)

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

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