@extends('adminlte::page') @section('title', 'Product Type Details - MobileSentrix Admin') @section('content_header')

Product Type: {{ $productType->name }}

Edit Back to List
@stop @section('content')

Product Type Information

@if($productType->image)
{{ $productType->name }}
@endif
ID {{ $productType->id }}
Name {{ $productType->name }}
Slug {{ $productType->slug }}
Status @if($productType->is_active) Active @else Inactive @endif
Products {{ $productType->products->count() }}
Created {{ $productType->created_at->format('M d, Y H:i') }}
Updated {{ $productType->updated_at->format('M d, Y H:i') }}
@if($productType->description)
Description

{{ $productType->description }}

@endif

Products of this Type ({{ $productType->products->count() }})

@if($productType->products->count() > 0) @foreach($productType->products as $product) @endforeach
SKU Name Price Stock Actions
{{ $product->sku }} {{ $product->name }} ${{ number_format($product->price, 2) }} @if($product->stock_quantity <= $product->low_stock_threshold) {{ $product->stock_quantity }} @else {{ $product->stock_quantity }} @endif
@else

No products associated with this product type.

@endif
@stop @section('js') @stop