@extends($theme.'.layouts.admin') @section('content')
{{$product->discount_label}}
{{$product->main_category_name}}

{{$product->name_en}}

{{--
Estimated Delivery : {{ $deliveryTime }}
--}}
@if(count($product->group_variants) == 1) @foreach($product->group_variants as $variant)

{{$variant->product_color}} @if($variant->product_size) ({{$variant->product_size}}) @endif

@endforeach @else @endif
@php $total_price = $product->price; if($product->discount_type == 'amount'){ $total_price = $product->price - $product->discount_amount; } else if($product->discount_type == 'percentage'){ $percenatge = ($product->price/100)*$product->discount_percentage; $total_price = $product->price - $percenatge; } @endphp @if($total_price != $product->price)
MRP : @lang('messages.Rs') {{$product->price}}
Offer Price : @lang('messages.Rs') {{ $total_price }} @else @lang('messages.Rs') {{ $product->price }} @endif
@php $quantity = 0; $product_id = $product->id; @endphp @if(!empty($cart_list)) @foreach($cart_list as $cart) @if($cart['warehouse_product_id'] == $product_id) @php $quantity = $cart['qty']; @endphp @endif @endforeach @endif @if($quantity > 0) @php $style =""; $cart_style ="display:none"; @endphp @else @php $style ="display:none"; $cart_style ="border-radius: 100px !important;"; @endphp @endif

{{--
--}}

Generic Products – Not School Specific See All

@endsection