@extends('adminlte::page') @section('title', 'Content') @php $is_appv = 0; @endphp @if(request()->has('approve')) @php $is_appv = request('approve'); @endphp @endif @section('content_header')

Content List (@if($is_appv != 0) Approved Contents @else All Contents @endif)

Task Manager Content Writer Dashboard
@stop @section('content')
@php $nm = ""; $title = ""; $ct = ""; @endphp @if(request()->has('nm')) @php $nm = request('nm'); @endphp @endif @if(request()->has('cat')) @php $ct = request('cat'); @endphp @endif @if(request()->has('title')) @php $title = request('title'); @endphp @endif
@if(Auth::user()->role == 1) @endif
@php $i= 1; @endphp @foreach($content as $value) @php $i++; @endphp @endforeach
No. Category Title Writer Name Created Date View & Edit Remark Quality Check Description
{{$i}}. Others {{$value->title}} {{$value->getAttrubute->name ?? ''}} {{ $value->created_at->format('d-M-Y') }} view @if($value->remarkby == 0)Remark@else {{$value->remark}} Edit @endif
Checking...
{!! $value->content !!}
{!! $content->appends(request()->query())->links('pagination::bootstrap-5') !!}
@stop @section('css') @stop @section('js') @stop