@extends('user::layouts.backend-master') @section('breadcrumb_title', 'View Product Tag') @section('content')
| Name | {{ $productTag->name }} |
|---|---|
| Slug | {{ $productTag->slug }} |
| Description | {{ $productTag->description ?: 'No description' }} |
| Language | {{ $productTag->language->name ?? 'Unknown' }} |
| Color | @if ($productTag->color) {{ $productTag->color }} @else No color @endif |
| Sort Order | {{ $productTag->sort_order }} |
| Created At | {{ $productTag->created_at->format('Y-m-d H:i:s') }} |
| Updated At | {{ $productTag->updated_at->format('Y-m-d H:i:s') }} |
| Title | Status | Actions |
|---|---|---|
| {{ $product->title }} | {{ ucfirst($product->status) }} |
@include('backend::components.show-button', [
'route' => route('admin.product.show', $product->id)
])
@include('backend::components.edit-button', [
'route' => route('admin.product.edit', $product->id)
])
|