argument('page'); $users = User::all()->forPage($page, 20)->all(); $this->info("Listing all users for page $page"); $this->info("Id\tName\tBalance"); foreach ($users as $user) { $this->info($user->id . ":\t" . $user->name . "\t" . $user->balance); } } }