This forum has moved to a new location and is in read-only mode. Please visit talk.octobercms.com to access the new location.
Iocare
I'm designing a crone job with octobercms task scheduler.
This is my code in Plugin.php:
public function registerSchedule($schedule)
{
$schedule->call(function () {
Settings::onCreateCert(1); //this is what i want ... but its throwing error.
})->daily();
}
How to call a controller method in Plugin File?
1-1 of 1