@extends('layouts.app') @section('content')
{{ __('VER MUESTRA') }}
{{ __('VOLVER') }}
{{ __('Estás viendo el ID') }}
{{ $muestra->id }}
{{ __('con el codigo') }}
{{ $muestra->codigo }}
{{ __('y esta operación fue registrada el ') }}
{{ $muestra->created_at->format('d-m-Y') }}
{{ __('a la(s) ') }}
{{ $muestra->created_at->format('H:i:s') }}
@if ($muestra->updated_at != $muestra->created_at)
{{ __('Estás viendo el ID') }}
{{ $muestra->id }}
{{ __('y esta operación fue actualizada el ') }}
{{ $muestra->updated_at->format('d-m-Y') }}
{{ __('a la(s) ') }}
{{ $muestra->updated_at->format('H:i:s') }}
@else
{{ __('Este muestra aún no ha sido actualizada') }}
@endif
{{ __('CODIGO') }}
@if ($muestra->codigo)
@else
@endif
{{ __('HUMEDAD') }}
@if ($muestra->humedad)
@else
@endif
{{ __('METALES PRECIOSOS') }}
{{ __('ORO') }}
@if ($muestra->au)
@else
@endif
{{ __('PLATA') }}
@if ($muestra->ag)
@else
@endif
{{ __('COBRE') }}
@if ($muestra->cu)
@else
@endif
{{ __('CONTAMINANTES') }}
(Nota: "Si no se encuentran valores para los contaminantes, deja el campo vacío.")
{{ __('ARSENICO') }}
@if ($muestra->as)
@else
@endif
{{ __('ANTOMONIO') }}
@if ($muestra->sb)
@else
@endif
{{ __('PLOMO + ZINC') }}
@if ($muestra->pb)
@else
@endif
{{ __('BISMUTO') }}
@if ($muestra->bi)
@else
@endif
{{ __('MERCURIO') }}
@if ($muestra->hg)
@else
@endif
{{ __('H2O') }}
@if ($muestra->s)
@else
@endif
{{ __('OBSERVACION') }}
@if ($muestra->obs)
@else
@endif
@endsection