@extends('template')
@section('title', 'Noticias')
@section('breadcrumb')
Inicio
noticias
@endsection
@section('content')
NOTICIAS...
@foreach ($noticias as $noticia)
{{ \Carbon\Carbon::parse($noticia->date)->isoformat('D MMMM, YYYY') }}
@endforeach
{{ $noticias->onEachSide(1)->links() }}
@endsection