@extends('layouts.master') @section('title', 'Stock') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.sidebar') @include('layouts.header-sub')
@yield('title')

@if (isset($low_stock_products) && count($low_stock_products) > 0)
Low Stock Warning
Some souvenirs are running low and may need restocking:
    @foreach ($low_stock_products as $low)
  • {{ $low->product_name }} — Remaining: {{ $low->product_current_stock }}
  • @endforeach
@endif
ราคาทั้งหมด ณ วันที่ {{ \Carbon\Carbon::parse($lastUpdate)->format('d M Y H:i') }}
@foreach ($products as $i => $product) @endforeach
No. Image Product Code Name Current Stock Current Unit Price History logs
{{ $loop->iteration }} @if ($product->product_image) Product Image @else No Image @endif {{ $product->product_code }} {{ $product->product_name }} {{ $product->product_current_stock ?? '0' }} {{ $product->product_current_unit_price ?? '0' }}
@include('layouts.footer') @endsection