@extends('admin.layouts.app') @section('content')

Article Management

Add Article
@if (session('success')) @endif
@foreach ($articles as $article) @endforeach
Title Category Status Author Published At Actions

{{ $article->title }}

{{ Str::limit($article->excerpt, 60) }}

{{ $article->category->name }} {{ ucfirst($article->status) }} {{ $article->author->name }} {{ $article->published_at ? $article->published_at->format('d M Y') : '-' }}
@csrf @method('DELETE')
{{ $articles->links() }}
@endsection