@extends('layouts.admin.admin')
@section('title', 'Product Detail')
@section('content')
Edit
Add
| Name |
{{ $product->name }} |
| SKU |
{{ $product->sku }} |
| Description |
{{ $product->description }} |
| Image |
 |
| Sort |
{{ $product->sort }} |
| Status |
{!! statusHtml($product->status) !!} |
@endsection
@section('page-specific-scripts')
@endsection