@extends('frontend.layouts.app') @section('title', 'Blogs') @section('content') @include('frontend.common.header') @if ($contents->count() > 0)

From Our Blogs

@foreach ($contents as $content)
{{$content->title}}

{{$content->author ?? null}} / {{site_date_format($content->created_at)}}

{{str_limit($content->title, 30)}}
@if(!empty($content->short_text))

{{str_limit($content->short_text,30)}}

@else



@endif
@endforeach
@endif @include('frontend.block.subscribe') @endsection