@extends('client.layout.master') @php use App\Models\Translation; $locale = app()->getLocale(); @endphp @section('title', Translation::getValue('news_title', $locale)) @section('content') {{ Translation::getValue('news', $locale) }} {{ Translation::getValue('home', $locale) }} {{ Translation::getValue('news', $locale) }} {{ Translation::getValue('all', $locale) }} {{ Translation::getValue('news_title', $locale) }} {{ Translation::getValue('press', $locale) }} {{ Translation::getValue('events', $locale) }} @foreach($news as $item) {{ $item->title }} {{ Translation::getValue($item->category, $locale) }} {{ Str::limit($item->short_description, 120) }} @endforeach {{ $news->links() }} @endsection