@extends('layouts.admin') @section('title','Gestión de productos') @section('styles') @endsection @section('options') @endsection @section('preference') @endsection @section('content')

Productos

{{-- --}}
@foreach ($products as $product) @endforeach
Id Nombre Codigo Cantidad Categoría Acciones
{{$product->id}} {{$product->nombre}} {{$product->codigo}} {{$product->cantidad}} {{$product->category->nombre}} {!! Form::open(['route'=>['products.destroy',$product], 'method'=>'DELETE']) !!} {!! Form::close() !!}
{{-- --}}
@endsection @section('scripts') {!! Html::script('melody/js/data-table.js') !!} @endsection