Route::get('/', function () { 
     $visits = Redis::incr('visits'); 
     return $visits; 
});