/home/dvjjulio/test.istyle.mx/app/Console/Commands/DailyTasks.php
<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use App\Http\Controllers\ClienteController;
use App\Http\Controllers\ComisionesController;

class DailyTasks extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'demo:cron';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Command description';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
        //
        \Log::info("Cron is working fine!");
        $deactivateClientes = new ClienteController();
        $deactivateClientes->deactivateClientes();

        $comisiones = new ComisionesController();    
        $comisiones->insertComisionesTerminal();
        \Log::info("End of Cron Correctlly!");
        $this->info('Demo:Cron Command Run successfully!');
    }
}