@extends('front.layout.template') @section('title', 'Category '.$category . ' - Blog Rudi Kurniawan') @section('content')
@csrf

Showing article with category : {{ $category }}

@forelse ($articles as $item)
...
{{ $item->created_at->format('d-m-Y') }} {{ $item->Category->name }}

{{$item->title}}

{{ Str::limit(strip_tags($item->desc), 200, '...') }}

Read more →
@empty

Not found

@endforelse
{{ $articles->links() }}
@endsection