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

PRODUCT PRICING DETAILS

{{date('d-m-Y',strtotime($date))}}
@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}} {{$pricing->sales_price}}
@endsection