@extends('layouts.admin') @section('page_title', 'My Submitted News') @section('content')

Track Approval Status

@foreach($news as $post) @endforeach
Title Category Status Views Date Actions
{{ $post->title }} {{ $post->category->name }} @if($post->status == 'approved') Approved @elseif($post->status == 'pending') Pending Review @else Rejected @endif {{ $post->view_count }} {{ $post->created_at->format('M d, Y') }} Edit
@csrf @method('DELETE')
@endsection