@extends('layouts/pos_layout') @section('title', '| Product Pricing Details') @section('content') @include('successMsg')
| SL# | Supplier | Catagory | Brand | Model | Product Name | Barcode | Cost Price | Sales Price | |
|---|---|---|---|---|---|---|---|---|---|
| {!! Form::text('product_id[]',$pricing->product_id, ['class' => 'form-control input-sm', 'id' => 'product_id', 'type' => 'text','style' => 'text-align:right;']) !!}2 | {{++$no}} | {{$pricing->product->supplier->company_name}} | {{$pricing->product->category->name}} | {{$pricing->product->brand->name}} | {{$pricing->product->model->name}} | {{$pricing->product->name}} | {{$pricing->product->barcode}} | {{$pricing->product->cost_price}} | {!! Form::text('sales_price[]', $pricing->sales_price, ['class' => 'form-control input-sm', 'id' => 'sales_price_'.$pricing->product_id, 'type' => 'text','style' => 'text-align:right;']) !!} |