@extends('layouts.admin') @section('title', $news->title) @section('content')

View News Article

Back to News @can('manage news') Edit Article @endcan

Published on {{ $news->formatted_date }} • {{ $news->reading_time }}

{{ $news->title }}

@if($news->image) @endif

Short Description

{{ $news->short_description }}

Content

{!! nl2br(e($news->content)) !!}

Article Information

ID {{ $news->id }}
Slug {{ $news->slug }}
Author @if($news->author)
{{ $news->author->name }} {{ $news->author->name }}
@else Unknown @endif
Created {{ $news->created_at->format('M d, Y H:i') }}
Last Updated {{ $news->updated_at->format('M d, Y H:i') }}
Reading Time {{ $news->reading_time }}
@can('delete news')
@csrf @method('DELETE')
@endcan

Frontend View

View how this article appears on the frontend:

View on Website
@endsection @section('styles') @endsection