@extends('layouts.app') @section('content') @if(session()->has('success'))
{{ session()->get('success') }}
@endif

Blog

@foreach($posts as $post) @endforeach
# Title Slug Is Featured? Is Published? Pinned Category Scheduled Post Action
{{ $post->id }} {{ $post->title }} {{ $post->slug }} {{ $post->is_featured ? 'Yes' : 'No' }} {{ $post->is_published ? 'Yes' : 'No' }} {{ $post->pinned ? 'Yes' : 'No' }} {{ $post->category->name }} @if($post->scheduled_at) {{ $post->scheduled_at }} @else Already Published @endif View Edit
@method('DELETE') @csrf
@endsection