@extends('layouts.app') @section('content')

Blogs

Explore insights, guidance, and perspectives from the world of art.

View All @foreach($categories as $cat) {{ $cat->name }} @endforeach
@forelse($blogs as $blog)
@if($blog->image)
{{ $blog->title }}
@else
@endif

{{ $blog->title }}

{{ \Illuminate\Support\Str::limit($blog->short_description, 280) }}

Read more
@empty

No blogs found.

@endforelse
{{ $blogs->links() }}
@if(!empty($pageContents['blogs']->content))
{!! $pageContents['blogs']->content !!}
@endif @endsection