MOON
Server: Apache
System: Linux server10.mejorconweb.com 3.10.0-962.3.2.lve1.5.27.el7.x86_64 #1 SMP Sat Nov 30 02:18:52 EST 2019 x86_64
User: ser65kty (1085)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/ser65kty/cardedeu.serversmw.com/resources/views/noticiashome.blade.php
@extends('layouts.app')
@section('metadata')
<title>Notícies - La Mongia - Ajuntament de Cardedeu</title>
@endsection
@section('content')    
  <section class="cabecera">  
      <div class="container">
        <div class="clearfix"><br></div>
        <div class="">
          <h2 class="text-center">Notícies</h2>
          @php
          $i=0;
          @endphp
          @foreach($noticias as $noticia)

            <div class="noticiasheader">
              <div class="imagenoticiasheader"><img src="/images/noticias/{{$noticia->imatge}}"></div>
              <div class="titolnoticiasheader">
                <a href="/noticies/{{$noticia->id}}" class="cursolinkhome"><h1 class="text-center">{{$noticia->title}}</h1></a>
                <br>
              {!!$noticia->shortcontent!!}
                <div class="fechanoticiasheader">{{App\Helpers\helpers::getdatedayhelper($noticia->datapublicacio)}}</div>
              </div>
            </div>
            <div class="clearfix"></div>

          @php
          $i++;
          @endphp 
          @endforeach
        </div>{{ $noticias->onEachSide(1)->links() }}
      </div>
    </section>
            
      <div class="clearfix"></div>
@endsection

@section('bottomscripts')

@endsection