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 →
Cancel In-Flight Form Submissions in Inertia.js v3.7 image

Cancel In-Flight Form Submissions in Inertia.js v3.7

Read article
Laravel Starter Kits Now Ship with Vite+ image

Laravel Starter Kits Now Ship with Vite+

Read article
Pessimistic Locking in Laravel Eloquent with refreshForUpdate() image

Pessimistic Locking in Laravel Eloquent with refreshForUpdate()

Read article
Mask Query Bindings in Laravel Exception Messages image

Mask Query Bindings in Laravel Exception Messages

Read article
whereBinary(): Case-Sensitive MySQL Queries in Laravel image

whereBinary(): Case-Sensitive MySQL Queries in Laravel

Read article
Compile PHP to Native Binaries with TypePHP image

Compile PHP to Native Binaries with TypePHP

Read article