@forelse ($items as $key => $item) @empty @endforelse {{-- Use TFOOT instead of a second THEAD --}}
@lang('Name') @lang('SKU') @lang('Brand') @lang('Category') @lang('Sub Category') @lang('Stock') @lang('Purchase Price') @lang('Purchase Discount') @lang('Purchase Tax') @lang('Sale Price') @lang('sale Discount') @lang('sale Tax') @lang('Status')
{{ Str::limit($item->name, 30) }}
{{ $item->product_sku ?: '-' }} {{ $item->brand?->name ?? '-' }} {{ $item->category?->name ?? '-' }} {{ $item->subCategory?->name ?? '-' }} {{ numberformat(getStock($item->id)) }} {{ $item->unit?->name ?? ' ' }} {{ numberformat($item->purchase_price) }} {{ product_discount($item, 'purchase') }} {{ $item->input_vat?->vat_parcentage ?? '0' }}% {{ numberformat($item->sale_price) }} {{ product_discount($item, 'sale') }} {{ $item->output_vat?->vat_parcentage ?? '0' }}% {{ Str::ucfirst($item->status) }}
No data Available
@lang('Name') @lang('SKU') @lang('Brand') @lang('Category') @lang('Sub Category') @lang('Stock') @lang('Purchase Price') @lang('Purchase Discount') @lang('Purchase Tax') @lang('Sale Price') @lang('sale Discount') @lang('sale Tax') @lang('Status')
@if ($items instanceof \Illuminate\Pagination\LengthAwarePaginator) {{ $items->links('layouts.paginate') }} @endif