xxxxxxxxxx
<div class="modal fade " id="order_products_{{$order->id}}" tabindex="-1" aria-labelledby="order_products_{{$order->id}}Label" aria-hidden="true">
<div class="modal-dialog modal-xl modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">@lang('template::all.order_id_products', ['orderId' => $order->id])</h5>
</div>
<div class="modal-body p-2 m-2">
<div class="table-responsive">
<table class="table table-sm">
<thead>
<tr>
<th scope="col" width="7px" class="text-center">#</th>
<th scope="col" width="60px"></th>
<th scope="col">@lang('template::all.product_name')</th>
<th scope="col" class="text-center">@lang('template::all.quantity')</th>
<th scope="col" class="text-center" width="130px;">@lang('template::all.profile.my_monthly_payment')</th>
<th scope="col" class="text-center">@lang('template::all.total_price')</th>
</tr>
</thead>
<tbody>
@foreach($order->products as $product)
<tr>
<th scope="row" class="align-middle text-center">{{$product->id}}</th>
<td><img src="{{$product->image}}" alt="" width="50" height="50"></td>
<td class="align-middle">{{AdminService::trans($product->name)}}</td>
<td class="align-middle text-center">{{$product->quantity}}</td>
<td class="align-middle text-center"> {{AdminService::pricePrint($product->intend_price , true, true)}}</td>
<td class="align-middle text-center">{{AdminService::pricePrint($product->total_price_intend, true, true)}}</td>
</tr>
@endforeach
<tr>
<td colspan="4" class="fw-bold">@lang('template::all.total')</td>
<td class="text-center fw-bold">{{AdminService::pricePrint($order->intend_price, true, true)}}</td>
<td class="text-center fw-bold">{{AdminService::pricePrint($order->total_price_intend, true, true)}}</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="modal-footer" style="display: block;">
<button type="button" class="btn btn-primary" id="order_products_{{$order->id}}Button">@lang('template::all.close')</button>
</div>
</div>
</div>
</div>
xxxxxxxxxx
<table class="table table-striped table-dark">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
xxxxxxxxxx
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Heading</th>
<th scope="col">Heading</th>
<th scope="col">Heading</th>
<th scope="col">Heading</th>
<th scope="col">Heading</th>
<th scope="col">Heading</th>
<th scope="col">Heading</th>
<th scope="col">Heading</th>
<th scope="col">Heading</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
</tr>
</tbody>
</table>
</div>
xxxxxxxxxx
<table class="table table-dark">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
xxxxxxxxxx
<table class="table table-striped">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
xxxxxxxxxx
<!-- On tables -->
<table class="table-secondary"></table>
<table class="table-secondary"></table>
<table class="table-success"></table>
<table class="table-danger"></table>
<table class="table-warning"></table>
<table class="table-info"></table>
<table class="table-light"></table>
<table class="table-dark"></table>
<!-- On rows -->
<tr class="table-primary"></tr>
<tr class="table-secondary"></tr>
<tr class="table-success"></tr>
<tr class="table-danger"></tr>
<tr class="table-warning"></tr>
<tr class="table-info"></tr>
<tr class="table-light"></tr>
<tr class="table-dark"></tr>
<!-- On cells (`td` or `th`) -->
<tr>
<td class="table-primary"></td>
<td class="table-secondary"></td>
<td class="table-success"></td>
<td class="table-danger"></td>
<td class="table-warning"></td>
<td class="table-info"></td>
<td class="table-light"></td>
<td class="table-dark"></td>
</tr>