@extends('layouts.master') @section('title', isset($category) ? $category->name . ' - Blog' : 'Blog') @section('content')

{{ isset($category) ? $category->name : 'Latest Updates' }}

Industry news, tips, and platform updates.

Categories
@forelse($posts as $post)
@if($post->image) {{ $post->title }} @else
@endif
{{ $post->published_at->format('M d, Y') }}
{{ $post->title }}

{{ Str::limit($post->excerpt, 100) }}

@empty

No posts found.

@endforelse
{{ $posts->links() }}
@endsection