@extends('layouts/pos_layout') @section('title', '| Product Pricing Details') @section('content') @include('successMsg')

PRODUCT PRICING DETAILS

{{date('d-m-Y',strtotime($date))}} {!! Form::hidden('effected_date', $date, ['class' => 'form-control input-sm', 'id' => 'effected_date', 'type' => 'text','style' => 'width:150px;']) !!}
{!! Form::open(['url' => '']) !!} @foreach($product_pricing_lists as $pricing) @endforeach
SL# Supplier Catagory Brand Model Product Name Barcode Cost Price Sales Price
{{++$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;']) !!}
{!! Form::submit('Update', ['id' => 'updatePricing', 'class' => 'btn btn-primary btn-xs', 'style' => 'font-size:15px;']) !!}
{!! Form::close() !!}
@endsection