@extends('backend.app') @section('content')

Product Details

Product : {{$product->name}}

Sku : {{$product->sku}}

Category : {{ $product->category?$product->category->name:''}}

Brand : {{ $product->brand?$product->brand->name:''}}

Type : {{ $product->type}}

Purchase Price : {{$product->purchase_price}}
Selling Price : {{$product->sell_price}}
Color : {{$product->color}}

@if($product->image)
Product Image :
@endif @foreach ($product->images as $key => $image)
Multi Image : Delete
@endforeach
@if($product->description) Product Description : {{$product->description}}
@endif @if($product->body)
Body : {!!$product->body!!}
@endif @if($product->feature)
Feature : {!!$product->feature!!}
@endif @if($product->discount_type)
Discount Type : {{$product->discount_type}}
@endif @if($product->dicount_amount !=0)
Discount Amount : {{$product->dicount_amount}}
@endif @if($product->after_discount !=0)
After Discount : {{$product->after_discount}}
@endif

Product-Size Wise Available Stock Quantity


@foreach($product->variations as $key=>$v) @endforeach
Sl Size Color Stock Quantity
{{$key+1}} {{$v->size->title}} {{$v->color->name}} {{$v->stocks->sum('quantity')}}
@endsection