@extends('admin.layouts.master') @section('title', 'Product list') @section('content') {{ __('Search Inventory') }} Product Name Select Product @foreach ($products as $product) {{ $product->name }} @endforeach Brand Name Select Brand @foreach ($brands as $brand) {{ $brand->name }} @endforeach Category Name Select Category @foreach ($subCategories as $category) {{ $category->sub_category_name }} @endforeach Status Select Status Published Draft {{ __('List of Product') }} {{ __('Add Brand') }} {{ __('Add Category') }} {{ __('Add Sub-Category') }} {{ __('Add Product') }} {{ __('#') }} {{ __('ENA No') }} {{ __('Sub Category') }} {{ __('Product Name') }} {{ __('Brand') }} {{ __('Stock') }} {{ __('Threshold') }} {{ __('Price') }} {{ __('Status') }} {{ __('Action') }} @endsection @section('css') @endsection @section('js') @endsection