@extends('layoutsfrontend.master') @section('title') @lang('Title') @endsection @section('css') @endsection @section('content')
@foreach($news as $item)
@php $galleryNews = $item->galleries($categoryId)->first(); $newsImage = $galleryNews ? getgallery($galleryNews) : asset('images/news01.jpg'); @endphp {{ $newsImage }}
{{ $item->created_at->format('Y-m-d') }}

{{ Str::limit($item->title, 50) }}

{{ Str::limit($item->summary, 100) }}

read more
@endforeach
{{ $news->links('pagination::client') }}
@endsection @section('script') @endsection