@extends('layouts.admin') @section('title', 'News Posts') @section('content_header')

News Posts

@stop @section('content')

List of News Posts

@foreach($news as $post) @endforeach
# Title Category Description Image Actions
{{ $post->id }} {{ $post->title }} {{ $post->category->name ?? 'N/A' }} {{ Str::limit($post->description, 50) }} @if($post->image) News Image @else N/A @endif View Edit
@csrf @method('DELETE')
@stop @section('js') @stop