@extends('layouts.app') @section('title', 'CONFINCA - Noticias') @section('content')

Noticias

@foreach ($posts as $post)
{{ $post->title }}
{{ date('F j, Y', strtotime($post->published_at)) }}
Leer más
@endforeach @if ($posts->hasPages())
    @if ($posts->onFirstPage())
  • @else
  • @endif @foreach ($posts->links()->elements[0] as $page => $url) @if ($page == $posts->currentPage())
  • {{ $page }}
  • @else
  • {{ $page }}
  • @endif @endforeach @if ($posts->hasMorePages())
  • @else
  • @endif
@endif
@endsection