@extends('layouts.app') @section('content')
{{ __('TODAS LAS OPERACIONES REGISTRADAS') }}
@forelse($blendings as $blending) @empty @endforelse
{{ __('ID') }} {{ __('FECHA CREACION') }} {{ __('Código') }} {{ __('Preparación') }} {{ __('Notas') }} {{ __('Peso') }} {{ __('Acciones') }}
{{ $blending->id }} {{ $blending->created_at }} {{ $blending->cod }} {{ $blending->lista }} {{ $blending->notas }} {{ $blending->pesoblending }} VER EDITAR DESPACHO
@csrf @method('DELETE')
{{ __('No hay blendings disponibles') }}
@endsection