I've case on Card class bootstrap, Here I want to make 1 parent card and 4 child card (in parent card) and make them 6 column every 1 child card, but when I make 4 child card with col-xl-6 then the other child card make new line. I want to make the child card using grid bootstrap column. Here my code
template
<b-card class="card-congratulation-medal bg-rts-main row">
<h5 class="text-white col-xl-12">
Selamat Siang,<br>
{{ user.nama }} ({{user.kode}})
</h5>
<b-card class="p-0 col-xl-3 col-md-3 mt-2" v-for="(item, index) in cardItem" :key="index">
<h5>{{ item.title }}</h5>
</b-card>
</b-card>
data()
cardItem: [
{
title: "Point",
icon: "asem"
},
{
title: "Invoice Unpaid",
icon: "asem"
},
{
title: "Resi",
icon: "asem"
},
{
title: "Goods",
icon: "asem"
},
]
the result of my case here : My Case
I want to make like that, 6 column every .card : My expetation