@extends('layouts.layoutapp') @section('content')
@foreach ($products as $product) @endforeach
Product Name Product Code Category Avl. Qty Price Actions

{{ $product->branch->native_name_flag == 'A' ? ($product->native_name ?? $product->name) : $product->name }}

{{ $product->code ?? '-' }}

{{ $product->category->name }}

{{ $product->qty }}

{{ $product->unit_price }}

{{-- --}}
@csrf @method('DELETE')
@endsection @push('scripts') @endpush