I am facing an issue with my columns in bootstrap, as they are currently appearing vertically, one above the other.
I need them to be displayed side by side
https://i.sstatic.net/ZKdj7.png
Here is the code I am using:
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 col-12 layout-spacing">
<div class="widget widget-card-two">
<div class="widget-content">
<div class="media">
<div class="w-img">
<img src="assets/img/90x90.jpg" alt="avatar">
</div>
<div class="media-body">
<h6>{{ $tracking->order->shipping_address }}</h6>
<p class="meta-date-time">{{ $tracking->order->user->name }}</p>
</div>
</div>
<div class="card-bottom-section">
<h5>{{ $tracking->order->shipping_method }}</h5>
<div class="img-group">
<a style="text-decoration: none; background-color: #ffffff;" href="https://api.whatsapp.com/send?phone={{$tracking->order->user->telefono}}&text=Hola" target="_blank"> <img src="https://i.imgur.com/C5L19Q8.png" alt="avatar"> </a>
</div>
<a href="{{route('order-show',$tracking->order)}}" class="btn">Ver Pedido N° {{ $tracking->order->id }}</a>
</div>
</div>
</div>
</div>
Can anyone assist me with this?