{{isset($page->title) && $page->title ? $page->title : ""}}
@php
$price = $page->variant ? Arr::pluck($page->variant,"price") : null;
$minPrice = $price ? min($price) : null;
$salePrice = $page->variant ? Arr::pluck($page->variant,"discounted_price") : null;
$saleMinPrice = $salePrice ? min($salePrice) : null;
@endphp
@if($saleMinPrice)
Starting from ₹{{$minPrice}} ₹ {{$saleMinPrice}}
@else
Starting from ₹ {{$minPrice}}
@endif
{!! isset($page->description) && $page->description ? $page->description :"" !!}
@if(isset($page['colors']) && $page['colors']->toArray())
@endif
@if(isset($storages) && $storages)
@endif
{!! isset($page->keyfeature) && $page->keyfeature ? $page->keyfeature:"" !!}
{!! isset($page->specification) && $page->specification ? $page->specification:"" !!}