News

Factory Callbacks and Closure-Based Guards in Laravel

Published
Factory Callbacks and Closure-Based Guards in Laravel image

Two undocumented (before today anyhow) features were recently added to the Laravel 5.6 documentation, and they are both fantastic!

First, factory callbacks allow you to perform additional tasks after making or creating a model:

Thanks to @driesvints for documenting this handy new feature… ✌️ pic.twitter.com/UZ01NxR6yz

— Taylor Otwell ????‍???? (@taylorotwell) June 7, 2018

I mentioned these helpers in Going Deeper with Factory States, and at the time these methods weren’t documented yet. There are four methods now documented thanks to Dries Vints:

// Callback for factories
$factory->afterMaking(App\User::class, function ($user, $faker) {
// ...
});
 
$factory->afterCreating(App\User::class, function ($user, $faker) {
$user->accounts()->save(factory(App\Account::class)->make());
});
 
// Callbacks for factory states
$factory->afterMakingState(App\User::class, 'delinquent', function ($user, $faker) {
// ...
});
 
$factory->afterCreatingState(App\User::class, 'delinquent', function ($user, $faker) {
// ...
});

These callbacks are a clean way to save relational data automatically after creating a new model via a factory.

The second feature that was previously undocumented is Closure-based guards for request authentication:

Simple, Closure based authentication for request authentication in Laravel: https://t.co/PGG1MPVkhd … have used it several times myself but wasn't documented. ????

— Taylor Otwell ????‍???? (@taylorotwell) June 7, 2018

Adding the Auth::viaRequest within one of your service provider’s boot() method is the simplest way to implement custom HTTP authentication:

Auth::viaRequest('custom-token', function ($request) {
return User::where('token', $request->token)->first();
});

You can then reference the custom guard in your app’s config/auth.php guards config:

'guards' => [
'api' => [
'driver' => 'custom-token',
],
],

Laravel is by far one of the most well-documented frameworks in existence, and thanks to individual community members, the documentation keeps getting better!

The documentation can’t possibly cover everything, but with the number of new features and changes in each release, there’s always room for adding new features to the documentation repo.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Filed in

Sponsored

acquaintsoft logo
Acquaint Softtech

Hire Laravel developers with AI expertise at $20/hr. Get started in 48 hours.

Visit Acquaint Softtech

The latest

View all →
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
Statamic Mailables Viewer Previews Laravel Emails in the Control Panel image

Statamic Mailables Viewer Previews Laravel Emails in the Control Panel

Read article