public function test_qr_code_customer()
{
$token = 'v4jdlUW5W370VchqlSIDzL5LHjqxXv4jgo37dTP2';
$response = $this->withHeaders([
'Authorization' => 'Bearer ' . $token,
])->get('/api/qr-code/customer');
$response
->assertOk()
->assertJsonStructure([
'ok',
'data' => [
'user' => [
'id',
'code'
]
]
])
;
}