@extends('layouts.app') @section('content')
{{ __('TODAS LAS BLENDINGS REGISTRADAS') }}
@forelse($blendings as $blending) @empty @endforelse
{{ __('ID') }} {{ __('Fecha Creacion') }} {{ __('Código') }} {{ __('Preparación') }} {{ __('Peso') }} {{ __('Notas') }} {{ __('Creado por') }} {{ __('Acciones') }}
{{ $blending->id }} {{ $blending->created_at }} {{ $blending->cod }} {{ $blending->lista }} {{ $blending->pesoblending }} {{ $blending->notas }} {{ $blending->user ? $blending->user->name : 'Desconocido' }} VER EDITAR @if($blending->estado !== 'inactivo') DESPACHO @endif
@csrf @method('DELETE')
{{ __('No hay blendings disponibles') }}
@endsection