.cart-item_btns {
width: 92px;
height: 25px;
background: #FFF3E5;
border-radius: 10px;
-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 0 10px;
<div class="block-cart">
<div class="cart-arrow">
<svg width="40" height="40" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 6L6 18" stroke="#ffffff" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6 6L18 18" stroke="#ffffff" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="cart-wrap">
<div class="cart">
@if(\Gloudemans\Shoppingcart\Facades\Cart::count() > 0)
<div class="cart_title">
1 товар на 999 ₽
</div>
@foreach(\Gloudemans\Shoppingcart\Facades\Cart::content() as $item)
<div class="cart-item">
<div class="cart-item_img">
<img src="{{'storage/' . $item->model->image}}" alt="">
</div>
<div class="cart-item_content">
<div wire:click.prevent="deleteCart({{$item->rowId}})" class="cart-item_cross">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M18 6L6 18" stroke="#070707" stroke-linecap="round"
stroke-linejoin="round"/>
<path d="M6 6L18 18" stroke="#070707" stroke-linecap="round"
stroke-linejoin="round"/>
</svg>
</div>
<div class="cart-item_title">
{{$item->model->name}}
</div>
<div class="cart-item_mass">
999 г
</div>
<div class="cart-item_inf">
<div class="cart-item_price">
{{$item->model->price}} ₽
</div>
<div class="cart-item_btns">
<button type="button" wire:click.prevent="decreaseQuantity('{{$item->rowId}}')">
<img src="{{asset('assets/img/icons/minus.svg')}}" alt="">
</button>
<input type="text" value="{{$item->qty}}" readonly>
<button type="button" wire:click.prevent="increaseQuantity('{{$item->rowId}}')">
<img src="{{asset('assets/img/icons/plus.svg')}}" alt="">
</button>
</div>
</div>
</div>
</div>
@endforeach
https://oauth.vk.com/authorize?client_id=51422771&group_ids=23122276&display=popup&redirect_uri=http://localhost:8000/vk/callback&scope=messages&response_type=token&v=5.131