@extends('website.layouts.app') @section('title','Blog') @section('content') Blog Blog List Grid @foreach($blogs as $blog) {{$blog->name}} {!!Str::limit($blog->description, 700, $end='.......')!!} Read more @endforeach @endsection