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

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

@endif
@if(count($tidings))
@foreach ($tidings as $tiding)
{{ \Carbon\Carbon::parse($tiding['dataAlta'])->format('d M Y') }} @if($tiding['imatge'] != '') {{ $tiding['titol'] }} @else {{ $tiding['titol'] }} @endif
{{ $tiding['titol'] }}

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

{{ $tiding['nomSector'] }}

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