hello I want to create a command in laravel that runs once a week to call me a blade, that has a script and that combines ajax and php which generates some images I already have the command as php artisan img :: images
<?php
namespace App\Commands;
use App\Commands\Command;
use Illuminate\Contracts\Bus\SelfHandling;
class imagenes extends Command implements SelfHandling
{
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Execute the command.
*
* @return void
*/
public function handle()
{
//
}
}