@extends('layouts.app') @section('content')

Products     

@include('validate')

Products List

@csrf
@forelse ($productsList as $product) @empty @endforelse
Product Code Product Name Category Unit Purchase Price Sale Price Tax Action
{{ $product->product_code }} {{ $product->product_name }} {{ $product->category->category_name ?? '' }} {{ $product->unit->unit_code ?? '' }} {{ round($product->purchase_price, 2) }} {{ round($product->sale_price, 2) }} {{ round($product->tax_percentage, 2) }}
@lang('general.no_details_found')
@endsection @push('scripts') @endpush