getNavigationBadge()

This function is not working for me, what could be the reason?

public static function getNavigationBadge(): ?string { return static::getModel()::where('stock_minimo','>','stock')->count(); }
imagen.png
Solution
This is what you need whereColumn https://laravel.com/docs/11.x/queries#additional-where-clauses
public static function getNavigationBadge(): ?string
{
    return static::getModel()::whereColumn('stock_minimo', '<', 'stock')->count();
}
Was this page helpful?