Products
{{ __('Add New Product') }}
Product |
Category |
Description |
Quantity |
Actions |
@forelse ($products as $product)
@if ($product->thumbnail)
 }})
@elseif ($product->image)
 }})
@else
{{ substr($product->name, 0, 2) }}
@endif
|
{{ $product->category->name }}
|
{{ Str::limit($product->description, 50) }}
|
{{ $product->stocks->where('store_id', $selected_store_id)->sum('available_quantity') }}
|
view
Edit
Stock In
|
@empty
No products found.
|
@endforelse
@include('products.product_list', ['products' => $products])
{{ $products->links() }}