@extends('adminlte::page') @section('title', 'Content') @section('content_header')

Content List

Dashboard
@stop @section('content')
@php $title = ""; $ct = ""; @endphp @if(request()->has('cat')) @php $ct = request('cat'); @endphp @endif @if(request()->has('title')) @php $title = request('title'); @endphp @endif
@php $i= 1; @endphp @foreach($content as $value) @php $i++; @endphp @endforeach
No. Category Title Created Date Remark Description Action
{{$i}}. Others {{$value->title}} {{ $value->created_at->format('d-M-Y') }} {{ $value->remark }} {{ strip_tags($value->content) }}   
{!! $content->appends(request()->query())->links('pagination::bootstrap-5') !!}
@stop @section('css') @stop @section('js') @stop