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

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

@endif
@if(count($promotions))
@foreach ($promotions as $promotion)
{{ __('moneder.promotions.date', ['date' => \Carbon\Carbon::parse($promotion['dataCaducitat'])->format('d M Y')]) }} @if($promotion['imatge'] != '') {{ $promotion['titol'] }} @else {{ $promotion['titol'] }} @endif
{{ $promotion['titol'] }}

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

{{ $promotion['nomSector'] }}

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