@php /** * @name Toolbar prodotto\Pulsante aggiungi quantità veloce * @version 1.0.0 */ @endphp @php global $product; $variations = $product->get_variations(); $only_instock = false; if(!is_agent()){ $only_instock = call_setting('settings.product.only_instock'); } $increment_cart_quantity = [ 'add_custom' => [ 'id' => 'increment-cart-add-custom', 'label' => __t('Inserisci quantità'), 'type' => 'desc', 'selected' => false, 'input' => [ 'name' => 'quantity', 'type' => 'number', 'value' => '1', 'min' => '1', ], ], 'remove_all' => [ 'id' => 'increment-cart-remove-all', 'label' => __t('Rimuovi quantità'), 'type' => 'asc', 'selected' => false, ], ]; @endphp