@php
$count = 0;
@endphp
@if(isset($articles))
@foreach($articles as $article)
@php
$count++;
@endphp
@endforeach
@endif
@if($count < 1)
{{date_format($article->created_at,'d M Y')}}
{{$article->title}}
{{ substr(strip_tags($article->content), 0, 140) }}{{ strlen(strip_tags($article->content)) > 140 ? " ..." : "" }}
Read MoreNo Article Found!
@endif}})