@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 :{{ $product->product_name }}

{{-- --}} @foreach ($stocklog as $history) {{-- --}} @endforeach
Product NameSKU Purchase ID Quantity Remark Created at
{{ $history->product->product_name }}{{ $history->product->sku }} {{ $history->purchase_id }} {{ $history->quantity }} {{ $history->remarks }} {{ $history->created_at->format('d M Y') }}
{{--
Dollar Rate :   1$ = Rs.{{ $setting->currency_rate }}
--}}
@endsection