@extends('metronic.base') @section('titulo') Productos - editar @endsection @section('content') @include('sessions')
Producto: {{ $data->producto }}
LOS PRODUCTOS INTERNOS SON DE USO LOCAL, ES DECIR NO SON PRODUCTOS A LA VENTA, Y SON UTILIZADO PARA REALIZAR ORDENES DE COMPRA
@method('PUT') @csrf
Código:
Nombre del producto:
Imagen del producto
Guardar
@php $url = 'default.png'; if ($data->imagen != null) { $url = $data->imagen; } @endphp
Imagen actual
@include('producto.producto_interno.categorias')
@endsection