@extends('layouts.backend') @section('titulo')

Artículos

@if ($puede_crear) Nuevo @endif
@endsection @section('contenido') @if(Session::has('message')) @endif @if (count($articulos))
@foreach ($articulos as $articulo) @else @endif @endforeach
Título
Contenido
Autor Activado destacado Categoria Imagen Acciones
{{ $articulo->titulo }}
{{ strip_tags(substr($articulo->texto,0,150)) }}{{ strlen($articulo->texto) > 150 ? '...' : '' }}
{{ $articulo->nombres }} @if ($articulo->estado) SI @else NO @endif @if ($articulo->destacado) SI @else NO @endif {{ $articulo->categoria }} @if(empty($articulo->path)) @if ($puede_editar) @endif @if ($puede_eliminar) {!! Form::open(array('method' => 'DELETE', 'route' => array('articulos.destroy', $articulo->id))) !!} {!! Form::close() !!} @endif
@else
@endif @endsection @section('script') @endsection