@extends('layouts.admin') @section('title','Productos de categoría') @section('styles') @endsection @section('create') @endsection @section('options') @endsection @section('preference') @endsection @section('content')

Productos de la categoría {{$category->nombre}}

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