@extends('layouts.master') @section('title', 'Souvenir List') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.title')
Souvenir List
@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
@foreach ($products as $i => $item) @endforeach
Code Image Name Lastest Price Unit Min Max Quantity Type Status Manage
{{ $item->product_code }} @if ($item->product_image) Product Image @else No Image @endif {{ $item->product_name }} {{ number_format($item->product_current_unit_price, 2) }} {{ $item->name ?? '-' }} {{ $item->product_min_stock_level ?? '-' }} {{ $item->product_max_stock_level ?? '-' }} @if ($item->product_current_stock <= $item->product_min_stock_level) {{ $item->product_current_stock ?? '0' }} @else {{ $item->product_current_stock ?? '0' }} @endif {{ $item->product_type_name }} @if ($item->product_status === 'active') Active @else Inactive @endif
@include('layouts.footer') @endsection