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

Select Products for Discount

0 Selected
@csrf
@foreach ($products as $index => $product) @endforeach
SL Code Name Stock Price
{{ $index + 1 }} {{ $product->product_code }} {{ $product->name }} {{ number_format(getStock($product->id)) }} {{ number_format($product->sale_price) }}
@endsection @push('script') @endpush