@extends('layouts.app') @section('content')
{{-- table index start --}}
{{ $subCategoriesName }}
@php $counter = 1 @endphp @if (!$inventories->isEmpty()) @foreach ($inventories as $inventory) @endforeach @else @endif
No. Name Date of Purchase Brand Cost Total Quantity Action
{{ $counter++ }} {{ $inventory->name }} {{ $inventory->buy_date }} {{ $inventory->brand }} RM {{ number_format($inventory->price, 2, '.', ',') }} {{ $inventory->totalQuantity }} Info
No Data Found
{{-- table index end --}}
@endsection