@extends('layouts.app') @section('title','Stock Entries') @section('content')
@forelse($entries as $item)@empty@endforelse
NumberTypeDateStatus
{{ $item->number ?? '—' }}{{ $item->type ?? '—' }}{{ $item->date ?? '—' }}{{ $item->status ?? '—' }}
No records found
@endsection