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

{{ $product->name_en }}

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

{{$variant->group_variant_name}}

@endforeach @endif @if($count > 1) @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['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