@extends('adminlte::page')
@section('title', 'Alertas de Vencimiento')
@section('content_header')
Alertas de Productos por Vencer
@stop
@section('content')
@if(count($alertas) > 0)
@foreach($alertas as $alerta)
{{ $alerta['mensaje'] }}
@endforeach
@else
No hay alertas de productos por vencer.
@endif
@stop