This is a package for Laravel Nova which allows you to create, update and delete scheduled commands based on DionTech/laravel-extended-scheduler
You can install the package in to a Laravel app that uses Nova via composer:
composer require comes/nova-scheduler-ui
After installation run
php artisan migrate
and add Packge to tools section in NovaServiceProvider
public function tools()
{
return [
new NovaSchedulerUi,
];
}