@extends('layouts.store.store') @section('title', 'Store Inventory') @section('content')
@include('partials.header') @include('layouts.store.sidebar')
Inventory ManagementInventory List

Inventory List
@php $i = 1; @endphp @foreach($wrenches as $wrench) @if(!empty($wrench->next_cal_date)) @else @endif @php $i++; @endphp @endforeach
SL.NO. WRENCH ID WRENCH SL.NO. PART NO. WRENCH RECEIVED ON NEXT RE-CALIBRATION DUE ACTION
{{ $i }} {{ $wrench->id }} {{ $wrench->serial_number }} {{ $wrench->part_number }} {{ $wrench->updated_at->format('m/d/Y') }}{{ \Carbon\Carbon::parse($wrench->next_cal_date)->format('m/d/Y') }}N/A View
@stop