@extends('template')
@section('title', 'Galerias')
@section('breadcrumb')
Inicio
Galerias
@endsection
@section('content')
GALERIAS
@foreach ($galerias as $galeria)
{{ \Carbon\Carbon::parse($galeria->date)->isoformat('D MMMM, YYYY') }}
@endforeach
{{ $galerias->onEachSide(1)->links() }}
@endsection