Support the ongoing development of Laravel.io →
Testing Input Requests
Last updated 10 months ago.
1

My solution was to use method call as follows:

$response = $this->call(
    'GET', 
    'api/user/logout', 
    [], 
    [
        'key' => Illuminate\Support\Facades\Crypt::encryptString('abc123'), 
        'uid' => Illuminate\Support\Facades\Crypt::encryptString($user->id)
    ]
);

It served my case and I didn't have to remove the cookie middleware.

Last updated 2 years ago.
1

Sign in to participate in this thread!

LoadForge

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2023 Laravel.io - All rights reserved.