@extends('front.layout.template') @section('title', 'Article Blog - Rudi Kurniawan') @section('content')
@csrf
@if ($keyword)

Showing article with keyword : {{ $keyword}}

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

{{$item->title}}

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

Read more →
@empty

Not found

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