When your command is made available to your application, you can use Laravel to schedule it to run at pre-defined intervals, just like you would a CRON.
In The app/Console/Kernel.php file you will find a schedule method that you can use to schedule your task.
<?php
namespace App\Console;
...