@extends(AdminBaseDashboard::AdminbaseLayout()) @section('title', trans('stock::inventory.no_stock_manage_page')) @section('content')
@if(count($nostock) > 0) @foreach($nostock as $product) @endforeach @endif
{{__('stock::inventory.barcode')}} {{__('stock::inventory.description')}} {{__('stock::inventory.cost')}} {{__('stock::inventory.price')}} {{__('stock::inventory.quantity')}} {{__('stock::inventory.tax')}} {{__('stock::inventory.action')}}
{{ $product->Barcode}} {{ $product->Description}} {{ AdminBaseDashboard::currency_symbol() }}{{ number_format($product->PurchasePrice , 2)}} {{ AdminBaseDashboard::currency_symbol() }}{{ number_format($product->SellingPrice , 2)}} {{ $product->CurrentQuantity}} @if($product->Taxes_id == 0) {{ AdminBaseDashboard::Tax()[0]['title'] }} @endif @includeif('stocks::Products.short_code.Delete_Modal.confirm_delete')
@endsection