@extends('layouts.master_app') @section('title')Productos @endsection @section('css') @endsection @section('content')

Productos

Selected
@include('partials.success') @foreach($products as $item) @endforeach
Código Tipo Marca Nombre
{{$item->code}} {{$item->type_product->name}} {{isset($item->brand ) ? $item->brand->name : '' }} {{$item->name}} @if($item->default==1)
Predeterminado
@endif
Editar
@endsection @section('js') @endsection