@extends('layouts.admin-main') @section('content')
Back
{{--
--}} {{--
--}} {{-- GRN Number--}} {{--
--}} {{--
--}}

{{$settings_->shop_name}}

{{__('message.cashier')}} : {{Auth::user()->name}}
{{__('message.invoice date')}} : {{now()->toDateTimeString()}}
{{__('message.location')}} : {{$settings_->address}}
{{__('message.phone number')}} : {{$settings_->phone}}

{{__('message.product qty transaction invoice')}}

@foreach($qtyHistories as $index => $qtyHistory) @endforeach
# {{__('message.category')}} {{ __('message.product name') }} {{__('message.qty')}} {{ __('message.qty before transaction') }} {{ __('message.qty after transaction') }} {{ __('message.note') }} {{ __('message.user') }} {{ __('message.updated at') }}
{{$index+1}} {{$qtyHistory->product->productCategory->name??""}} {{$qtyHistory->product->name??""}} {{$qtyHistory->qty}} {{$qtyHistory->qty_before_transaction}} {{$qtyHistory->qty_after_transaction}} {{$qtyHistory->note??''}} {{$qtyHistory->user->name??''}} {{date('d-m-Y H-i-s' , strtotime($qtyHistory->created_at))}}
Print
@endsection @section('scripts') @endsection