@extends('layouts.master') @section('content') @if($news->count() > 0)
@foreach($news as $item) @endforeach
Título Imagen Acciones

{{$item->title}}
{{$item->description}}

{{HTML::image($item->image->url('thumb'), NULL, ['class' => 'img-rounded'])}} Editar {{Form::open([ 'action' => ['AdminNewsController@destroy', $item->id], 'method' => 'DELETE', 'style' => 'display: inline;' ])}} {{Form::close()}}
@else
No hay noticias que mostrar
@endif
Añadir noticia/promoción
@stop