@extends('layouts.master') @section('content')
Brands & Products Products List

Products for Brand: {{ $brand->brands_name }} @can('Supplier add') Add Product Back to Brands @endcan

@foreach ($products as $key => $product) @endforeach
S.No Product Name Category Unit In Stock Description Actions
{{ $key + 1 }} {{ $product->products_name }} {{ $product->category->products_category_name . ' | ' . $product->category->products_category_name_urdu ?? '' }} {{ $product->unit->measurement_unit_name ?? '' }} {{ $product->in_stock ? 'Yes' : 'No' }} {{ $product->products_desc }} {{-- @can('Product edit') --}} {{-- Edit --}} {{-- Edit --}} Edit {{-- @endcan --}} {{-- @can('Product view') --}} {{-- View --}} {{-- @endcan --}} {{-- @can('Product delete') --}}
@csrf @method('DELETE') {{-- Remove --}}
{{-- @endcan --}}
S.No Product Name Category Unit In Stock Description Actions
@endsection @push('scripts') @endpush