@extends('layouts.master') @section('content')
{{Form::open(['method' => 'get'])}} Agregar producto Importar Excel {{Form::close()}}
@if(count($products) == 0)
No se han creado nuevos productos
@else
@foreach($products as $product) @endforeach
Nombre corto Descripción Imagen Acciones
{{$product->name}} {{$product->description}} {{HTML::image($product->image->url('mini'))}} Editar {{Form::open([ 'action' => ['AdminMacProductsController@destroy',$product->id], 'method' => 'DELETE', 'style' => 'display:inline' ])}} @if($product->trashed()) @else @endif {{Form::close()}}
{{$products->links()}}
@endif @stop