{!! Form::label('id', 'Id:') !!}

{!! $venta->id !!}

{!! Form::label('created_at', 'Created At:') !!}

{!! $venta->created_at !!}

{!! Form::label('updated_at', 'Updated At:') !!}

{!! $venta->updated_at !!}

{!! Form::label('deleted_at', 'Deleted At:') !!}

{!! $venta->deleted_at !!}

{!! Form::label('cliente_id', 'Cliente Id:') !!}

{!! $venta->cliente_id !!}

{!! Form::label('total', 'Total:') !!}

{!! $venta->total !!}

{!! Form::label('subtotal', 'Subtotal:') !!}

{!! $venta->subtotal !!}