@extends('layout.app') @section('title', 'Items') @section('page-title', 'Manage Items') @section('content')
Items Details
Add Item Report
@forelse($items as $item) @empty @endforelse
Sr# Item Code Name Description Location Unit Pieces/Carton Cost Price Stock Quantity Operations
{{ $loop->iteration ?? 'N/A' }} {{ $item->item_code ?? 'N/A' }} {{ $item->name ?? 'N/A' }} {{ $item->description ?? 'N/A' }} {{ $item->location ?? 'N/A' }} {{ $item->unit->name ?? 'N/A' }} {{ $item->pieces_per_carton ?? 'N/A' }} {{ $item->cost ?? 'N/A' }} {{ $item->price ?? 'N/A' }} {{ $item->stock ?? 'N/A' }} {{-- --}}
No items found.
@endsection @push('scripts') @endpush