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

Articles & Building Advice

Read about interior design tips, installation step-guides, and material sciences authored by our technical engineers.

@foreach($posts as $post)
{{ $post->title }} @php $catLabels = ['guide' => 'Buying Guides', 'tech' => 'Material Science', 'design' => 'Interior Design']; @endphp {{ $catLabels[$post->category] ?? $post->category }}
{{ $post->published_at?->format('M d, Y') ?? 'Draft' }} {{ $post->read_time ?? '5 min read' }}

{{ $post->title }}

{{ $post->excerpt }}

Read Article
@endforeach

Loading article...

@endsection @push('scripts') @endpush