@extends('layouts.adminLayout.admin_design') @section('content')

{{$title}}

@if ($inventoryLog->isNotEmpty()) @foreach($inventoryLog as $plog) @endforeach @else @endif
Date/Time User UOM Quantity befour change Quantity change Quantity after change {{ __('lbl.action') }}
{{\Carbon\Carbon::parse(strtotime($plog->created_at))->setTimezone($tz)->format('M d Y H:m:i A');}} {{$plog->empName}} {{$plog->uom}} {{$plog->quantity_befour_change}} {{$plog->quantity_change}} {{$plog->quantity_after_change}} {{$plog->message}}
{{ __('lbl.no_record_found') }}
@endsection @section('pagescript') @stop