@extends('master.principal') @section('header') Novedades | {{ config('vw.name') }} @endsection @section('content')
inicio / Novedades
Novedades
@foreach($noticias as $noticia)
@if(isset($noticia) && $noticia->imagen != null) @else @endif
{{ $noticia->titulo }}

{!! str_limit(strip_tags(html_entity_decode($noticia->texto)), 150) !!}

@endforeach
{{ $noticias->links() }}
@endsection