@extends('layouts.frontend') @section('title') @lang('Blogs') @endsection @section('content')
@forelse ($blogs as $item)
@lang('Admin') {{dateFormat($item->created_at,'d M Y')}}
{{__(Str::limit($item->title,30))}}
@lang('Read More')
@empty
@lang('No Blog Found!')
@endforelse
@if ($blogs->hasPages()) @endif
@endsection