@extends('website.layouts.app') @section('title','Blog') @section('content')

Blog

@foreach($blogs as $blog)

{{$blog->name}}

{!!Str::limit($blog->description, 700, $end='.......')!!}
Read more
@endforeach
@endsection