@extends('layouts.admin')
@section('content')
@include('admin.partials.page-header', [
'icon' => 'bi bi-bag',
'title' => 'View Product',
'subtitle' => 'Synchronized catalog database registry',
'show_back' => true,
'back_url' => route('admin.products.index'),
])
Product Name / Identifier
{{ $product->name }}
{{ $product->is_available ? 'Active Node' : 'Inactive Asset' }}
{{ $product->is_virtual ? 'Virtual Cloud Product' : 'Physical Asset' }}
Manufacturer / Vendor
{{ $product->brand_name ?? 'N/A' }}
System Category
{{ $product->category }}
Commercial Asset
Value
{{ strtoupper($product->price_currency ?? 'EUR') }}
{{ number_format($product->retail_value, 2) }}
System Metrics
RECORD INGESTED
{{ \Carbon\Carbon::parse($product->created_at)->format('d M Y, h:i A') }}
LAST REFRESH SYNC
{{ \Carbon\Carbon::parse($product->updated_at)->format('d M Y, h:i A') }}
@endsection