@extends('layouts.superadmin') @section('content')

Article

Add New Article
@if ($message = Session::get('success'))

{{ $message }}

@endif
@if($articles) @foreach($articles as $key => $article) @endforeach @else

No records found!

@endif
Sr No Title Category Author Article For Published At Action
{{ ($key + 1) }} {{ $article->category->name ?? '-' }} {{ $article->author->name ?? '-' }} {{ $article->audience?->label() ?? '-' }} {{ $article->published_at ?? '-' }} {{-- Edit
@csrf @method('DELETE')
--}}
@endsection