@extends('layouts.admin.base-dashboard')
@section('title', 'Show Image Product')
@section('content')
@include('layouts.admin.include.message')
Detail Product
Name |
: |
{{ $product->name }} |
Description |
: |
{{ $product->description }} |
Category |
: |
{{ $product->category ? $product->category->name : '-' }} |
Brand |
: |
{{ $product->brand ? $product->brand->name : '-' }} |
Stock |
: |
{{ $product->stock }} |
Updated At |
: |
{{ $product->updated_at }} |
@endsection
@push('script')
@endpush