@foreach($blogs->take(3) as $item)
@if($item->status == 1 && $item->approved == 1)
{{ date('jS F Y', strtotime($item->created_at)) }}
{!! str_limit($item->detail, $limit = 400, $end = '...') !!}
@endif
@endforeach
@foreach($blogs as $blog )
@if($blog->status == 1 && $blog->approved == 1)