|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/erp.theinteractive.co.in/resources/views/productservice/ |
Upload File : |
<div class="modal-body">
<div class="card ">
<div class="card-body table-border-style full-card">
<div class="table-responsive">
{{-- @if(!$products->isEmpty())--}}
<table class="table">
<thead>
<tr>
<th>{{__('Warehouse') }}</th>
<th>{{__('Quantity')}}</th>
</tr>
</thead>
<tbody>
@forelse ($products as $product)
@if(!empty($product->warehouse))
<tr>
<td>{{ !empty($product->warehouse)?$product->warehouse->name:'-' }}</td>
<td>{{ $product->quantity }}</td>
</tr>
@endif
@empty
<tr>
<td colspan="4" class="text-center">{{__(' Product not select in warehouse')}}</td>
</tr>
@endforelse
</tbody>
</table>
</div>
</div>
</div>
</div>