@extends('frontend.layouts.master') @section('page_title') {{ __('moneder.agendas.title') }} @endsection @section('head') @endsection @section('content-wrapper') @if(view()->exists('tenants.' . $currentCompany->code . '.frontend.moneder-agendas.portada' )) @include('tenants.' . $currentCompany->code . '.frontend.moneder-agendas.portada') @else

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

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

{!! substr(strip_tags($agenda['descripcio']), 0, 100) . '....'; !!}

{{ $agenda['nomSector'] }}

{{ __('tidings.read-more') }}
@endforeach
@else
@endif
@push('scripts') @endpush @endsection