@extends('template') @section('title', 'Noticias') @section('breadcrumb') @endsection @section('content')

NOTICIAS...

@foreach ($noticias as $noticia)
{{ \Carbon\Carbon::parse($noticia->date)->isoformat('D MMMM, YYYY') }}

{{ $noticia->title }}

@endforeach
{{ $noticias->onEachSide(1)->links() }}
@endsection