@extends('admin.layouts.master') @section('title', 'Inventory') @section('content')

{{ __('Inventory Updates') }}

@foreach ($inventory_logs as $id => $inventory_log) @endforeach
{{ __('#') }} {{ __('Title') }} {{ __('Action') }} {{ __('Date/Time') }} {{ __('Products Updated') }} {{ __('Created By') }}
{{ ++$id }} {{ $inventory_log->title }} {{ ucfirst(str_replace('_', ' ', $inventory_log->action)) }} {{ \Carbon\Carbon::parse($inventory_log->entry_date_time)->format('d M, Y \a\t g:iA') }} {{ $inventory_log->inventoryDetails->unique('product_id')->count() }} {{ $inventory_log->createdBy->name ?? NULL }}
@endsection