@extends('layouts.master') @section('title', 'Stock Levels Dashboard') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.title')

Stock Levels Dashboard

@forelse ($stocks as $index => $product) @empty @endforelse
# ชื่อของที่ระลึก จำนวนคงเหลือ
{{ $index + 1 }} {{ $product->product_name }} {{ $product->product_quantity }}
ไม่พบข้อมูล
@include('layouts.footer') @endsection