@extends('layouts.admin-main') @section('content')
# | {{__('message.grn')}} | {{__('message.part number')}} | {{__('message.product category')}} | {{ __('message.product name') }} | {{ __('message.selling cost') }} | @if($for_sale == 0){{__('message.weight')}} | {{ __('message.weight before transaction') }} | {{ __('message.weight after transaction') }} | @else{{__('message.qty')}} | {{ __('message.qty before transaction') }} | {{ __('message.qty after transaction') }} | @endif{{ __('message.note') }} | {{--{{ __('message.user') }} | --}}{{ __('message.updated at') }} |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{$index+1}} | {{$productQtyHistory->grn}} | {{$productQtyHistory->product?->part_number}} | {{$productQtyHistory->product->productCategory->name??''}} | {{$productQtyHistory->product->name??''}} | {{number_format($productQtyHistory->product_cost??0 , 2)}} {{$currency_->currency_symbol}} | @if($for_sale == 0){{abs($productQtyHistory->weight)}} | {{number_format($productQtyHistory->weight_before_transaction , 2)}} | {{number_format($productQtyHistory->weight_after_transaction , 2)}} | @else{{abs($productQtyHistory->qty)}} | {{number_format($productQtyHistory->qty_before_transaction , 2)}} | {{number_format($productQtyHistory->qty_after_transaction , 2)}} | @endif{{$productQtyHistory->note??''}} | {{----}} {{-- --}} {{-- {{$productQtyHistory->user->name??''}}--}} {{-- --}} {{-- | --}}{{date('d-m-Y H-i-s' , strtotime($productQtyHistory->created_at))}} |