Laravel 8 factory state afterCreating
PHP Snippet 1:
public function active()
{
return $this->state(function (array $attributes) {
return [
'active' => true,
];
})->afterCreating(function (User $user) {
// ...
});
}
PHP Snippet 2:
public function active()
{
return $this->state([
'active' => true,
])->afterCreating(function (Article $user) {
// ...
});
}
PHP Snippet 3:
public function configure()
{
return $this->afterCreating(function (User $user) {
//
});
}