@extends('frontend.layouts.master') @section('page_title') {{ __('moneder.agendas.title') }} @endsection @section('head') @endsection @section('content-wrapper')

{{ __('moneder.agendas.title') }}

@if(count($agendas))
@foreach ($agendas as $agenda)
{{ \Carbon\Carbon::parse($agenda['dataCaducitat'])->format('d M Y') . ' ' . $agenda['hora_calendari'] }}
{{ $agenda['titol'] }}

{!! $agenda['descripcio'] !!}

@if(isset($agenda['pag_web']) && $agenda['pag_web'] != '') {{ __('tidings.read-more') }} @endif
@endforeach
@else
@endif
@endsection