@extends('layoutsfrontend.master') @section('content') @php $imagePath=getbannerimage(); @endphp
@foreach($newsandevents as $key => $news)
@php $image = $news->galleries($categoryId)->first(); $image_path = getgallery($image); @endphp
{{ $news->created_at ? $news->created_at->format('Y-m-d') : '' }}

{{ $news->name }}

{{ $news->summery ?? Str::limit(strip_tags($news->description), 100) }}

read more
@endforeach
{{ $newsandevents->links('vendor.pagination.custom') }}
@endsection