@extends('layouts.admin') @section('title', 'News Management') @section('content')
Manage your news articles
| ID | Image | Title | Author | Date | Reading Time | Actions |
|---|---|---|---|---|---|---|
| {{ $article->id }} |
@if($article->image)
|
{{ $article->title }}
{{ Str::limit($article->short_description, 50) }}
|
{{ $article->author->name }} | {{ $article->formatted_date }} | {{ $article->reading_time }} | @can('manage news') @endcan @can('delete news') @endcan |
| No news articles found | ||||||