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

Home Page Posts

@if(session('success'))
{{ session('success') }}
@endif
Create New Post
@forelse($posts as $post) @empty @endforelse
ID Title Image Description Type Actions
{{ $post->id }} {{ Str::limit($post->title, 40) }} @if($post->image && \Illuminate\Support\Str::startsWith($post->image, ['http://', 'https://'])) Post Image @elseif($post->image) Post Image @else No image @endif {{ Str::limit($post->description, 80) }} {{ $post->type }}
@csrf @method('DELETE')
No posts found.
{{ $posts->links() }}
@endsection