@extends('layouts.app') @section('stitle', __('messages.inventory_history_report')) @section('title', __('messages.inventory_history_report')) @section('content')
@include('reports.inventory_history_menu')
@if($data->isNotEmpty())
@foreach($data as $inventory) @endforeach
{{__('messages.Item')}} {{__('messages.BARCODE')}} {{__('messages.SKU')}} {{__('messages.COST')}} {{__('messages.QTY')}} {{__('messages.created_at')}}
{{ $inventory->name }} {{ $inventory->barcode }} {{ $inventory->sku }} {{ $inventory->cost }} {{ $inventory->qty }} {{ convertFromUTC($inventory->created_at,Auth::user()->business_id) }}
{{__('messages.total')}} {{ $data->sum('cost') }} {{ $data->sum('qty') }}
@else
No Data Found! Adjust the date & filters in the report to get more specific results.
@endif
@endsection @push('my_scripts') @stack('my_scripts') @endpush