Best way is NOT to use Integer as a fieldname. It is bad praxis.
But if you need, you should access the database with raw method:
public function show()
{
$tests = DB::table('test')
->select("22 as twentytwo")
->get();
foreach($tests as $test){
Log::info($test->twentytwo);
}
}