@extends('layouts.app') @section('title', $news->title . ' - LPTA News') @section('content') {{ $news->category->name ?? 'News Article' }} {{ $news->title }} {{ $news->created_at->format('M d, Y') }} {{ $news->views }} Views LPTA Editor 📰 LPTA News Desk {!! nl2br(e($news->content)) !!} Back to News Share: Related News @if($relatedNews->count() > 0) @foreach($relatedNews as $related) {{ $related->created_at->format('M d, Y') }} {{ $related->title }} @endforeach @else No related articles found in this category. @endif @endsection
No related articles found in this category.