@extends('layout') @section('title') {{ $seo_setting->seo_title }} @endsection @section('frontend-content')
@forelse ($blogs as $index => $blog)
#
  • {{__('admin.By')}} {{ $blog->author ? $blog->author->name : '' }}
  • {{ $blog->created_at->format('d M Y') }}

{{ $blog->title }}

@empty

{{__('admin.Blog not found!')}}

{{__('admin.Whoops... this information is not available for a moment')}}

{{__('admin.Back to blog')}}
@endforelse
{{ $blogs->links('custom_pagination') }}

{{__('admin.Search')}}

{{__('admin.Popular Post')}}

@foreach ($popular_blogs as $popular_blog)
#
{{ $popular_blog->title }}
@endforeach

{{__('admin.Blog Categories')}}

@endsection