@extends('adminlte::page') @section('title', $titulo ?? '') @section('content_header')

{{ $titulo ?? ''}}

@stop @section('content')
{{ $message ?? ''}}
Sucursal
{{ $inventoryFrame->branch->name ?? ''}}
Marca
{{ $inventoryFrame->brand->name ?? ''}}
Tipo de Montura
{{ $inventoryFrame->frameType->name ?? ''}}
Código
{{ $inventoryFrame->code ?? ''}}
Medida
{{ $inventoryFrame->size ?? ''}}
Color
{{ $inventoryFrame->color ?? ''}}
Código de Barra o QR
{{ $inventoryFrame->qrcode ?? ''}}
Precio Montura
Compra {{ $inventoryFrame->currency_type =='SUS' ? '$us': 'Bs'}} {{ number_format($inventoryFrame->currency_type =='SUS' ? $inventoryFrame->pricebuy_sus : $inventoryFrame->pricebuy_bs ?? 0, 2) }}
Venta {{ $inventoryFrame->currency_type =='SUS' ? '$us': 'Bs'}} {{ number_format($inventoryFrame->currency_type =='SUS' ? $inventoryFrame->pricesale_sus : $inventoryFrame->pricesale_bs ?? 0, 2) }}
Detalles Adicionales
{{ $inventoryFrame->details ?? ''}}
@if(!is_null($inventoryFrame->frame_photo_path) && !empty($inventoryFrame->frame_photo_path)) Foto 1
Foto Montura @else Sin Foto @endif
@if(!is_null($inventoryFrame->frame_photo_path2) && !empty($inventoryFrame->frame_photo_path2)) Foto 2
Foto Montura @else Sin Foto @endif
@if(!is_null($inventoryFrame->frame_photo_path3) && !empty($inventoryFrame->frame_photo_path3)) Foto 3
Foto Montura @else Sin Foto @endif
Nueva Montura Editar Montura Listado de Monturas
@stop @section('css') @stop @section('js') @stop