@extends('metronic.base')
@section('extracss')
@endsection
@section('extrajs')
@endsection
@section('titulo')
Orden de Producción
@endsection
@section('content')
@include('sessions')
@php
// Define $tfoot como cadena vacía si no está definida
if (!isset($tfoot)) {
$tfoot = '';
}
@endphp
@component('components.table', ['tfoot' => $tfoot])
@slot('thead')
{{ __('Orden de Prod.') }} |
{{ __('Cod. Producto') }} |
{{ __('Producto') }} |
{{ __('Fecha de Prod.') }} |
{{ __('Cantidad') }} |
{{ __('Creado por') }} |
@endslot
@endcomponent
@endsection