@extends('admin.layouts.master') @section('title', 'Product list') @section('content')

{{ __('Qogita List') }}

@forelse ($products as $id => $product) @empty @endforelse
{{ __('#') }} {{ __('EAN') }} {{ __('Name') }} {{ __('Size') }} {{ __('Sell Unit') }} {{ __('Wholesale Price') }} {{ __('Quntity') }} {{ __('Brand') }} {{ __('Sub Category') }}
{{ ++$id }} {{ $product->qrcode }} {{ $product->name }} {{ $product->size }}ML {{ $product->sale_unit }} {{ $product->unit_price }} {{ $product->quantity ?? "N/A" }} {{ $product->brand->name }} {{ $product->subCategory->sub_category_name }}
No products available.
@endsection @section('js') @endsection