@extends('layouts.app') @section('title','Items') @section('content')
@forelse($items as $item)@empty@endforelse
CodeNameCategoryUnitRate
{{ $item->code ?? '—' }}{{ $item->name ?? '—' }}{{ $item->category->name ?? '—' }}{{ $item->unit ?? '—' }}{{ $item->standard_rate ?? '—' }}
No records found
@endsection