@extends('front.layout.app') @section('content')
@foreach($blogPosts as $post)
@if($post->getMedia('blog_images')->count() > 0)
image
@endif
{!! $post->title !!}

@php $words = str_word_count($post->content, 1); $limitedWords = array_slice($words, 0, 70); $limitedContent = implode(' ', $limitedWords); $remainingWords = count($words) - 70; @endphp {{ $limitedContent }} @if ($remainingWords > 0) [...] @endif

Read More
@endforeach
@endsection