@extends('layouts.admin.app') @section('content')
@if($productdetails)
{{$productdetails->fnid}} - Product Information {!! $productdetails->product_type == 'A' ? 'Addon' : ''!!}
{!! $productdetails->is_block == 'Y' ? 'BLOCK' : ''!!}
{{-- --}} {{-- --}} @if($productdetails->has_attribute == 'N') @endif @if($productPersonalize) @endif
ID : {{$productdetails->id}}
FNID : {{$productdetails->fnid}} ({{$productdetails->id}})
SKU : {{$productdetails->sku}}
OLD ID : {{$productdetails->old_id}}
FNID : {{$productdetails->fnid}} ({{$productdetails->id}}) OLD ID : {{$productdetails->old_id}}
Price : Rs. {{$productdetails->price}} MRP : Rs. {{$productdetails->actual_price}}
Delivery Type : {{$productdetails->delivery_type == 'H' ? 'Hand Delivery' : 'Courier'}} Delay Days : {{$productdetails->delivery_delay_days}}
Specification : {{ucwords($productdetails->specification)}} Segregation : {{ucwords($productdetails->segregation)}}
Vendor Name : {{$productdetails->vendor_name == 'NORMAL' ? '' : $productdetails->vendor_name}} {{-- @if(!empty($productdetails->vendor_name)) @if($productdetails->vendor_name != 'NORMAL') @php $vendorCost = App\Http\Helper1::get_vendorPrice($productdetails->id, $productdetails->vendor_name); @endphp (Vendor Price : Rs. {{$vendorCost ? $vendorCost->price : 0}}) @endif @endif --}} Product Attribute : {{$productdetails->has_attribute}}
Personalize No of Images : {{$productPersonalize->no_of_image}} Personalize Text : {{$productPersonalize->text_msg}}
@if($productdetails->has_attribute == 'Y') @else @endif
Slug : {{$productdetails->slug}}
Title : {{$productdetails->product_name}}
Description : {!! $productdetails->description !!}

Variation:

@if(!empty($productAttribute)) @foreach($productAttribute as $data) @endforeach
Id Old ID Content Price MRP
{{$data->id}} {{$data->attribute_fnid}}
({{$data->sku_old}})
{!! $data->content !!} {{$data->price}} {{$data->actual_price}}
@endif
Content : {!! $productdetails->content !!}
Alt Key : {!! $productdetails->alt_key !!}
Meta Title : {!! $productdetails->meta_title !!}
Meta Description : {!! $productdetails->meta_description !!}
@else
No Product Found
@endif
@endsection