Laravel Tutorials

Enhancing Numeric Validation with Laravel's Fluent Rule Interface

Published
Enhancing Numeric Validation with Laravel's Fluent Rule Interface image

Laravel introduces a more expressive approach to numeric validation through the fluent Rule::numeric() interface. This syntax transforms traditional string-based rules into chainable methods for improved readability.

The implementation provides a more developer-friendly syntax:

// Before
$rules = [
'price' => 'numeric|min:5|max:1000|decimal:2',
];
 
// After
$rules = [
'price' => Rule::numeric()
->min(5)
->max(1000)
->decimal(2),
];

This approach particularly shines when implementing comprehensive validation for financial or measurement data:

class ProductController extends Controller
{
public function store(Request $request)
{
$validated = $request->validate([
'name' => 'required|string|max:255',
'price' => Rule::numeric()
->min(0.01)
->max(9999.99)
->decimal(2),
'weight' => Rule::numeric()
->min(0)
->decimal(3)
->nullable(),
'stock' => Rule::numeric()
->integer()
->min(0)
->nullable(),
'discount_percent' => Rule::numeric()
->between(0, 100)
->decimal(1)
]);
 
Product::create($validated);
 
return redirect()->route('products.index')
->with('success', 'Product created successfully');
}
}

The fluent numeric validation interface creates more maintainable rule definitions while providing better IDE support through method chaining rather than string parsing.

Harris Raftopoulos photo

Senior Software Engineer • Staff & Educator @ Laravel News • Co-organizer @ Laravel Greece Meetup

Sponsored

masteringlaravel logo
Laravel Code Review

Get expert guidance in a few days with a Laravel code review

Visit Laravel Code Review

The latest

View all →
Laravel Auditor Audits Your App With Your Own AI Agent image

Laravel Auditor Audits Your App With Your Own AI Agent

Read article
A simple form builder that stays out of your way image

A simple form builder that stays out of your way

Read article
Laravel AI: Trace Agent Runs With Lifecycle Events image

Laravel AI: Trace Agent Runs With Lifecycle Events

Read article
Laravel AI: Get Raw HTTP Responses and Rate Limits image

Laravel AI: Get Raw HTTP Responses and Rate Limits

Read article
Agent Run Observability in Laravel AI SDK 0.11 image

Agent Run Observability in Laravel AI SDK 0.11

Read article
Debounced Queued Event Listeners in Laravel image

Debounced Queued Event Listeners in Laravel

Read article