@extends('frontend.layouts.app') @section('title') News @stop @section('content') @if (\App::getLocale() == 'my') @else @endif
@foreach ($articles as $article) @if (\App::getLocale() == 'my')
image-{{ $article->slug }}

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

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

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

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