@php $labelRaw = $custom_section[0]->category_name ?? ''; $label = ucwords(str_replace('-', ' ', $labelRaw)); // Festive Season $words = explode(' ', $label, 2); // max 2 parts @endphp

{{ $words[0] ?? '' }} {{ $words[1] ?? '' }}

View All
{{-- ================= FIRST BIG ARTICLE ================= --}} @foreach ($custom_section as $index => $blog) @if ($index == 0)
{{ $blog->title }}

{{ $blog->title }}

@if (\Carbon\Carbon::parse($blog->publish_date . ' ' . $blog->publish_time)->diffInWeeks() > 1) {{ \Carbon\Carbon::parse($blog->publish_date . ' ' . $blog->publish_time)->format('d-F-Y') }} @else {{ \Carbon\Carbon::parse($blog->publish_date . ' ' . $blog->publish_time)->diffForHumans() }} @endif


@else {{-- ================= SMALL ARTICLE CARD ================= --}}
{{ $blog->title }}

{{ Str::limit($blog->title, 70, '...') }}

@if (\Carbon\Carbon::parse($blog->publish_date . ' ' . $blog->publish_time)->diffInWeeks() > 1) {{ \Carbon\Carbon::parse($blog->publish_date . ' ' . $blog->publish_time)->format('d-F-Y') }} @else {{ \Carbon\Carbon::parse($blog->publish_date . ' ' . $blog->publish_time)->diffForHumans() }} @endif


@endif @endforeach
{{-- closes grid --}}