@extends('layouts.admin') @section('title', 'News & Blog') @section('content') @if(session('success')) @endif
All Posts
@forelse($news as $post) @empty @endforelse
Image Title Category Date View Actions
@if($post->image_url) @else
@endif
{{ $post->title }}
{{ Str::limit($post->excerpt, 50) }}
{{ $post->category }} {{ $post->created_at->format('M d, Y') }} View
@csrf @method('DELETE')

No posts found.

@if($news->hasPages())
{{ $news->links('pagination::bootstrap-5') }}
@endif @endsection