@extends('layouts.master')
@section('page_title', 'History Product')
@section('title', 'Products History')
@section('main_item', 'Products')
@section('sub_item', 'History Product')
@section('content')
{{-- | Product Name | --}}
SKU |
Purchase ID |
Quantity |
Remark |
Created at |
@foreach ($stocklog as $history)
{{-- | {{ $history->product->product_name }} | --}}
{{ $history->product->sku }} |
{{ $history->purchase_id }} |
{{ $history->quantity }} |
{{ $history->remarks }} |
{{ $history->created_at->format('d M Y') }} |
@endforeach
{{--
Dollar Rate : 1$ =
Rs.{{ $setting->currency_rate }}
--}}
@endsection