@extends('layouts.admin') @section('page_title', 'All News Posts') @section('content')
@foreach($news as $post) @endforeach
Title Reporter Status Action
{{ $post->title }} {{ $post->user->name }} {{ ucfirst($post->status) }} @if($post->status == 'pending')
@csrf @method('PATCH')
@endif
@csrf @method('DELETE')
@endsection