@extends('admin.admin_master') @section('admin')

Product Details


{{-- // Product Image --}}
Product Images
@forelse ($product->images as $image) image @empty

No Image Available

@endforelse
{{-- // Product Details Data --}}
Product Information
  • Name: {{ $product->name }}
  • Code: {{ $product->code }}
  • Category: {{ $product->category->category_name }}
  • Price: {{ $product->price }}
  • Stock Aleart: {{ $product->stock_alert }}
  • Product Qty: {{ $product->product_qty }}
  • Product Status: {{ $product->status }}
  • Product Note: {{ $product->note }}
  • Create On: {{ \Carbon\Carbon::parse($product->created_at)->format('d F Y') }}
@endsection