Nehad-Altimimi's avatar

Nehad-Altimimi liked a comment+100 XP

2w ago

Does anyone have the GitHub link for the Laravel workshop or the name of the series where I can find it?

Nehad-Altimimi's avatar

Nehad-Altimimi wrote a comment+100 XP

5mos ago

If anyone encounters this error in a user ($user) after upgrading to PHP 8.3, please try this


function loginAsUser(?User $user): User
{
    $user = $user ?? User::factory()->create();
 /** @var \App\Models\User $user */
    \Pest\Laravel\actingAs($user);

    return $user;
}