@extends('frontend.layout.layout') @section('title', 'Blog') @section('content')

OUR BLOG

What we are give you

@foreach ($blogs as $blog)
Blog Image
{{ $blog->title }}

{{ strlen($blog->short_desc) > 100 ? substr($blog->short_desc, 0, 100) . '...' : $blog->short_desc }}

@endforeach
@endsection