@extends('layouts.admin.app') @section('content')

Products Details

@if ($message = Session::get('error'))
{{ $message }}
@endif @if ($message = Session::get('success'))
{{ $message }}
@endif
Product Code: {{ $productData['product_id'] }}
Product Name: {{ $productData['product_name'] }}
Category: {{ $productData['category_name'] }}
Sub Category: {{ $productData['child_category_name'] }}
Regular Price: ${{ $productData['regular_price'] }}
Selling Price: ${{ $productData['selling_price'] }}
@if ($productData['status'] === 1) Active @else In-active @endif

Manage Attributes

@csrf

Added Attributes

@csrf @foreach ($productData['productattributes'] as $productattributes) @endforeach
Id Color Size SKU Price Stock
{{$productattributes['id']}} {{$productattributes['color']}} {{$productattributes['size']}} {{$productattributes['sku']}}


@endsection