@extends('layouts.app') @section('content')
Filter
@foreach ($stockLogs as $log) @endforeach
Product Name Initial Quantity Amount Transacted Balance Event Storage Area Date & Time User
{{ $log->stock->product->name }} {{ $log->initial_quantity }} {{ $log->amount_transacted }} {{ $log->balance }} {{ $log->event }} stock item for Production Requisition {{ $log->storageArea->name }} {{ $log->created_at->toDateString() }} {{ $log->user->name }}
@if(session('success')) @endif @if ($errors->any()) @endif @endsection