@extends('emails.layouts.base') @section('content')
📦 Low stock alert

{{ count($products) }} product{{ count($products) > 1 ? 's are' : ' is' }} running low

Hi {{ $userName }}, the following products in {{ $businessName }} are below their reorder threshold.


@foreach($products as $product)
{{ $product['name'] }} {{ $product['current_stock'] }} {{ $product['unit'] }} remaining
@endforeach
View Inventory →
@endsection