Categories
@if(null !== ($categories = module(24))) @endif
@if($blogs->isEmpty())

No records found for @if(request('keyword')) "{{ request('keyword') }}" @elseif(request('category')) "Category: {{ request('category') }}" @endif

@else

{{ $blogs->total() }} records found for @if(request('keyword')) "{{ request('keyword') }}" @elseif(request('category')) "Category: {{ request('category') }}" @endif

@foreach($blogs as $blog)
{{ date('d M Y', strtotime($blog->created_at)) }}
@endforeach
{{ $blogs->links('pagination::bootstrap-4') }}
@endif