@extends('frontend.layout.layout') @section('title', 'Blog') @section('content') OUR BLOG What we are give you @foreach ($blogs as $blog) {{ $blog->title }} {{ strlen($blog->short_desc) > 100 ? substr($blog->short_desc, 0, 100) . '...' : $blog->short_desc }} Read More @endforeach @endsection
{{ strlen($blog->short_desc) > 100 ? substr($blog->short_desc, 0, 100) . '...' : $blog->short_desc }}