@extends('layouts.master') @section('title', $page->title . ' | ' . setting('site.title')) @section('content') @push('custom-css') @endpush
@foreach($tabs as $value => $label) {{ $label }} @endforeach
@forelse($newsItems as $news)
{{ $news->heading }}
{{ $news->title }}

{{ $news->published_at?->format('d M Y') }}

{{ $news->heading }}

{{ \Illuminate\Support\Str::limit($news->description, 150) }}

@empty

Nothing here yet

There are no {{ strtolower($activeTab) }} items to show right now. Please check back soon.

@endforelse @if($newsItems->hasPages())
{{ $newsItems->links('vendor.pagination.default') }}
@endif
@endsection