{{ __('News') }}

@if ($categories->count() > 0)
@foreach ($categories as $category) @endforeach
@endif @if ($news->count() > 0)
@foreach ($news as $item)
{{ $item->getTranslation('title', app()->getLocale()) }}
{{ $item->published_at->format('M d, Y') }} @if ($item->categories && $item->categories->count() > 0)
@foreach ($item->categories as $category) {{ $category->getTranslation('name', app()->getLocale()) }} @endforeach
@endif

{{ $item->getTranslation('title', app()->getLocale()) }}

@if ($item->getTranslation('excerpt', app()->getLocale()))

{{ Str::limit($item->getTranslation('excerpt', app()->getLocale()), 120) }}

@endif {{ __('Read More') }} →
@endforeach
{{ $news->links() }}
@else

{{ __('No news found.') }}

@endif