@section('title', __('detalleproductos'))

Producto #{{ $idProducto }} Por Mayor

@if (session()->has('message'))
{{ session('message') }}
@endif @can('detalleproducto.add')
Adicionar
@endcan
@include('livewire.detalleproductos.create') @include('livewire.detalleproductos.update')
@can('detalleproducto.edit', 'detalleproducto.delete') @endcan @foreach ($detalleproductos as $row) @can('detalleproducto.edit', 'detalleproducto.delete') @endforeach
ID Empaque Precio Compra Precio Venta DiferenciaAcciones
{{ $row->id }} {{ $row->empaque }} {{ $row->precio_compra_x_mayor }} {{ $row->precio_venta_x_mayor }} {{ $row->precio_venta_x_mayor - $row->precio_compra_x_mayor}} @endcan
{{ $detalleproductos->links() }}