Get value cookie

Hi guys!

I want to get the value of a cookie in the component’s mount. But the value does not come. I tried like this:

public function mount(){

    $val = Cookie::get('language_app');

    dd($val);

}

Thanks!