@extends('layouts.admin') @section('title', 'Blog Posts') @section('content')

Blog Articles Management

Publish skincare tips, routine guides, and botanical ingredient stories.

Write Article
@if($posts->isEmpty())
No blog articles published yet.
@else @foreach($posts as $post) @endforeach
Title & Excerpt Category Read Time Published Date Status Actions
{{ $post->title }}
{{ Str::limit($post->excerpt, 60) }}
{{ $post->category }} {{ $post->read_time }} {{ $post->created_at->format('M d, Y') }} {{ $post->is_published ? 'Published' : 'Draft' }}
Edit
@csrf @method('DELETE')
{{ $posts->links() }}
@endif
@endsection