@extends('frontend.layouts.app') @if ($search) @section('title', ucwords($search) . ' ' . '-' . ' ' . $setting->bname) @elseif ($category) @section('title', ucwords($category) . ' ' . '-' . ' ' . $setting->site_title) @elseif ($tag) @section('title', ucwords($tag) . ' ' . '-' . ' ' . $setting->site_title) @else @section('title', 'Blogs' . ' ' . '-' . ' ' . $setting->site_title) @endif @section('description', $setting->site_description) @section('keywords', $setting->site_keywords) @section('content')

Our Blogs

Latest Articles & News from the Blogs

@forelse ($posts as $post)
@if ($post->image) Image @else Image @endif {{--
--}}
{{ Str::limit($post->title, 50) }}

{{ Str::limit($post->excerpt, 140) }}

Explore More
@empty

No data found

@endforelse
@stop