@extends('layouts.backend') @section('extraCss') @endsection @section('mainContentArea')

Manage Article Content

{{--
@csrf

Filter

Content Status ACTION
--}}
@if($articles->count() > 0) @foreach($articles as $key => $article) @endforeach @else @endif
# Name Section HSN User Action
{{$key + $articles->firstItem() }} {{ $article->code }} {{ empty($article->subcategory->name) ? 'N/A' : $article->subcategory->name }} {{ !empty($article->hsn) ? $article->hsn->code : 'N/A' }} {{ !empty($article->writer_id) ? $article->writer_id : 'N/A' }} @if($article->is_draft === 1) Modify Send To Content Approve @elseif($article->is_review === 1 ) Review @elseif($article->content_approved === 1 ) Approved @else Approvle Pending @endif
No Images found!
@php if($articles->count() > 0) { @endphp {!! $articles->appends(request()->input())->links() !!} @php } @endphp
@endsection @section('extraJs') @endsection