@extends('metronic.base') @section('extracss') @endsection @section('extrajs') @endsection @section('titulo') Matriz de componentes @endsection @section('content') @include('sessions')
Editar matriz
@csrf
Producto
@foreach ($productosVenta as $producto) @if ($bill->producto_venta_id == $producto->id)
{{ $producto->producto }}
@else
{{ $producto->producto }}
@endif @endforeach
Código
Estado
@if ($bill->status == 1)
Activo
Inactivo
@else
Activo
Inactivo
@endif
Creado por
Fecha de creación
Guardar
@endsection @section('extrajs') @endsection