@extends('layout.base')
@section('content')
Estado
{{ucwords($postventa->estado()->tipo()->descripcion)}}
{{format('shortDate', $postventa->estado()->fecha)}}
Observaciones
[{{count($postventa->observacionesPendientes())}} / {{count($postventa->observaciones())}}]
@foreach ($postventa->observaciones() as $observacion)
{{$observacion->texto}}
{{ucwords($observacion->estado()->tipo()->descripcion)}}
{{format('shortDate', $observacion->estado()->fecha)}}
@endforeach
@endsection