@extends('layouts.frontend') @section('meta_seo') @endsection @section('title', 'Blogs | Webiancy') @section('content')

Our Blog

All @foreach($categories as $category) {{ $category->name }} ({{ $category->blogs_count }}) @endforeach
@if($blogs->count() > 0)
@foreach($blogs as $index => $blog)
@if($blog->image) {{ $blog->title }} @else {{ $blog->title }} @endif @if($blog->category) {{ $blog->category->name }} @endif
@if($blog->author)

{{ $blog->author }}

@endif

{{ $blog->created_at->format('d M, Y') }}

{{ $blog->title }}

@if($blog->excerpt)

{{ $blog->excerpt }}

@endif
@endforeach
@if($blogs->hasPages())
@endif @else

No blogs found

@if($activeCategory) No published blogs in this category yet. Try a different category. @else Check back later for new content. @endif

@endif
@endsection