@extends('layouts.admin-simple') @section('title', $product->name) @section('page-title', $product->name) @section('breadcrumb') @endsection @section('page-actions')
edit Edit Product
@endsection @section('content')

Product Details

@if($product->image) {{ $product->name }} @else
inventory
@endif @if($product->images && count($product->images) > 0)
@foreach($product->images as $image)
{{ $product->name }}
@endforeach
@endif

{{ $product->name }}

{{ $product->description ?: 'No description provided.' }}

@if($product->features)
Key Features:

{{ $product->features }}

@endif
Slug: {{ $product->slug }}
Sort Order: {{ $product->sort_order }}
Thickness Range: @if($product->thickness_range) {{ $product->thickness_range }} @else Not specified @endif
Status: @if($product->is_active) Active @else Inactive @endif @if($product->is_featured) Featured @endif

Specifications ({{ $product->specifications->count() }})

@if($product->specifications->count() > 0) @foreach($product->specifications->groupBy('spec_type') as $type => $specs)
{{ $type }}
@foreach($specs->sortBy('sort_order') as $spec) @endforeach
{{ $spec->name }} {{ $spec->formatted_value }}
@csrf @method('DELETE')
@endforeach @else
list
No Specifications

Add technical specifications for this product.

@endif

Technical Specifications Table ({{ $product->technicalSpecifications->count() }})

@if($product->technicalSpecifications->count() > 0)
@foreach($product->technicalSpecifications as $spec) @endforeach
# Name Standard Thickness Length Width File Actions
{{ $loop->iteration }} {{ $spec->name }} {{ $spec->standard }} {{ $spec->thickness }} {{ $spec->length }} {{ $spec->width }} @if($spec->file_path) download {{ $spec->display_file_name }} @else No file @endif
@csrf @method('DELETE')
@else
table_chart
No Technical Specifications

Add technical specifications that will be displayed in a table format on the product page.

@endif

Metadata

Created
{{ $product->created_at->format('M d, Y g:i A') }}
Last Updated
{{ $product->updated_at->format('M d, Y g:i A') }}

Quick Actions

edit Edit Product
@csrf @method('DELETE')
list All Products
@endsection