@extends('layouts.frontend') @section('content')
@php $count = 0; @endphp @if(isset($articles)) @foreach($articles as $article) @php $count++; @endphp
{{date_format($article->created_at,'d M Y')}}

{{$article->title}}

{{ substr(strip_tags($article->content), 0, 140) }}{{ strlen(strip_tags($article->content)) > 140 ? " ..." : "" }}

Read More
@endforeach
@endif @if($count < 1)

No Article Found!

@endif

LATEST ARTICLES

@endsection