Laravel Tutorials

Handling Missing Request Data in Laravel

Published
Handling Missing Request Data in Laravel image

Laravel provides elegant methods for managing absent request data through missing() and whenMissing(). These methods simplify the process of handling optional fields and setting default values, making your code more expressive and maintainable.

// Check for missing input
if ($request->missing('name')) {
$name = 'Guest User';
}
 
// Handle missing data with callbacks
$request->whenMissing('email', function () {
// Handle missing email
});

Let's explore an example of a flexible settings update system:

// app/Controllers/SettingsController.php
<?php
 
namespace App\Http\Controllers;
 
use App\Models\Settings;
use Illuminate\Http\Request;
 
class SettingsController extends Controller
{
public function update(Request $request, Settings $settings)
{
$updates = [];
// Handle theme preferences
$request->whenMissing('theme',
function() use (&$updates) {
$updates['theme'] = [
'mode' => 'system',
'color' => 'blue'
];
},
function() use (&$updates, $request) {
$updates['theme'] = [
'mode' => $request->input('theme.mode', 'light'),
'color' => $request->input('theme.color', 'blue')
];
}
);
// Handle notification settings
if ($request->missing('notifications')) {
$updates['notifications'] = [
'email' => true,
'push' => false,
'frequency' => 'daily'
];
} else {
$updates['notifications'] = $request->notifications;
}
$settings->update($updates);
return response()->json([
'message' => 'Settings updated successfully',
'settings' => $settings->fresh()
]);
}
}

Example usage:

// Input with minimal data
{
"notifications": {
"email": true,
"push": true
}
}
// Response
{
"message": "Settings updated successfully",
"settings": {
"theme": {
"mode": "system",
"color": "blue"
},
"notifications": {
"email": true,
"push": true,
"frequency": "daily"
}
}
}
// Input with complete data
{
"theme": {
"mode": "dark",
"color": "purple"
},
"notifications": {
"email": false,
"push": true,
"frequency": "weekly"
}
}

The missing() and whenMissing() methods provide a clean way to handle optional request data while maintaining code readability.

Harris Raftopoulos photo

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

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article