@extends('frontend.layouts.app') @section('title', 'Blog') @section('content') @include('frontend.includes.headers.headerOne')
@foreach ($blogs as $blog)
{{ $blog->created_at->format('d M') }}
{{ $blog->author }}
Comments (03)
@php $wordCount = str_word_count(strip_tags($blog->content)); $minutes = ceil($wordCount / 200); // 200 words per minute @endphp {{ $minutes }} min Read

{{ $blog->title }}

{{-- This checks if the original content is longer than 500 characters --}} @if (strlen(strip_tags($blog->content)) > 500) {{-- Display the first 500 characters and strip all HTML tags for a clean excerpt --}} {!! Str::limit(strip_tags($blog->content), 500) !!} @else {{-- Display the full content if it's 500 characters or less --}} {!! $blog->content !!} @endif

{{-- Only show "Read More" if the content was truncated --}} @if (strlen(strip_tags($blog->content)) > 500) Read More @endif
@endforeach
Rosalina D. Willaim
Blogger/Photographer

he whimsically named Egg Canvas is the design director and photographer in New York. Why the nam

Search Here
Recent News
@foreach ($blogs as $blog) @endforeach
Image
Hill Shape Image
Up to 70% off managed cloud hosting

Ready to revolutionize our service?

Project management Technology Technology Project management Technology Technology Project management Technology Project management Technology
@include('frontend.includes.footers.footerOne')
@endsection