File: //home/armgroup/libs/resources/views/livewire/frontend/cart/index.blade.php
<div class="d-block mt-3">
<div class="input-group btn-block">
<form class="frm">
<button type="button" class="btn btn-toggle" wire:click="increment">
<i class="fas fa-plus"></i>
</button>
<input type="text"
readonly
value="{{ $qty }}"
class="form-control input_cart">
<button type="button" class="btn btn-toggle" {{ $qty == 1 ? 'disabled' : '' }}
wire:click="decrement">
<i class="fas fa-minus"></i>
</button>
<button type="button" class="btn btn-danger sweet-btn" wire:click="remove">
<i class="fas fa-trash-alt"></i> حذف
</button>
</form>
</div>
<div class="float-end">
@if($withoutSpecial != 'none')
<del style="padding-left: 10px;" class="text-danger">
{{ number_format($withoutSpecial * $qty) }}
</del>
@endif
<b style="font-size: 16px;">{{ number_format($price * $qty) }}</b> <small>تومان</small>
</div>
</div>