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.
Sign in to participate in this thread!