index.blade.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. @extends('layout')
  2. @section('content')
  3. <div class="space-y-12">
  4. <div class="border-b border-gray-200 pb-5">
  5. <h1 class="text-3xl leading-6 font-bold text-gray-900">Последние публикации</h1>
  6. <p class="mt-2 max-w-4xl text-sm text-gray-500">Читайте мысли, идеи и истории.</p>
  7. </div>
  8. <div class="grid gap-8">
  9. @forelse($posts as $post)
  10. <article class="flex flex-col items-start bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition-shadow duration-200 border border-gray-100">
  11. <div class="flex items-center gap-x-4 text-xs">
  12. <time datetime="{{ $post->published_at }}" class="text-gray-500">
  13. {{ $post->published_at ? $post->published_at->format('d M, Y') : 'Черновик' }}
  14. </time>
  15. </div>
  16. <div class="group relative mt-3">
  17. <h3 class="text-xl font-semibold leading-6 text-gray-900 group-hover:text-gray-600">
  18. <a href="{{ route('posts.show', $post) }}">
  19. <span class="absolute inset-0"></span>
  20. {{ $post->title }}
  21. </a>
  22. </h3>
  23. <p class="mt-3 line-clamp-3 text-sm leading-6 text-gray-600">
  24. {{ Str::limit($post->content, 150) }}
  25. </p>
  26. </div>
  27. </article>
  28. @empty
  29. <p class="text-gray-500 text-center py-10">Публикаций пока нет.</p>
  30. @endforelse
  31. </div>
  32. <!-- Пагинация -->
  33. <div class="mt-8">
  34. {{ $posts->links() }}
  35. </div>
  36. </div>
  37. @endsection