preloader
preloader
🧨 Call to undefined function print_price2() (View: /home/u976416941/domains/medistoreremedy.com/public_html/resources/views/themes/eCart/product.blade.php)

APP_DEBUG is set to true while APP_ENV is not local

This could make your application vulnerable to remote execution. Read more about Ignition security.

/home/u976416941/domains/medistoreremedy.com/public_html/
Error
Call to undefined function print_price2() (View: /home/u976416941/domains/medistoreremedy.com/public_html/resources/views/themes/eCart/product.blade.php)
    • 57
      resources/views/themes/eCart/product.blade.php
      :608
    • 47
      app/Http/Controllers/Controller.php
      App\Http\Controllers\Controller
      :152
    • 46
      App\Http\Controllers\HomeController
      :250
    • 2
      public/index.php
      :54
    • 1
      :21
::require
resources/views/themes/eCart/product.blade.php:608

593

594

595

596

597

598

599

600

601

602

603

604

605

606

607

608

609

610

611

612

613

614

615

616

617

618

619

620

621

622

623

@if (count(getInStockVarients($p)))

<input type="hidden" class="id"

name="id"

value="{{ $p->id }}"

data-id="{{ $p->id }}">

@foreach (getInStockVarients($p) as $v)

<input type="hidden"

class="qtyPicker qtyPicker-single-page qty"

name="qty" type="number"

id="qty-{{ $v->id }}"

name="qty" data-min="1"

min="1"

max="{{ (int) $v->stock + 1 }}"

data-max="{{ (int) $v->stock + 1 }}"

data-max-allowed="{{ Cache::get('max_cart_items_count') + 1 }}"

value="{{ $v->cart_count + 1 }}"

readonly

data-qty="{{ $v->cart_count + 1 }}">

<input type="hidden" class="varient"

data-varient="{{ $v->id }}"

name="varient"

value="{{ $v->id }}"

data-price='{{ get_price(get_price_varients($v)) }}'

data-mrp='{{ get_price(get_mrp_varients($v)) }}'

data-savings='{{ get_savings_varients($v) }}'

checked>

@endforeach

<input type="hidden" class="slug"

value="{{ $p->slug }}"

data-slug="{{ $p->slug }}">

@if (count(getInStockVarients($p)) > 1)