LaravelPackages.net
Acme Inc.
Toggle sidebar
industrious/laravel-scheduler-output-to-url

A laravel package for the scheduler to post output to a url.

1.081
0
v2.0
About industrious/laravel-scheduler-output-to-url

industrious/laravel-scheduler-output-to-url is a Laravel package for a laravel package for the scheduler to post output to a url.. It currently has 0 GitHub stars and 1.081 downloads on Packagist (latest version v2.0). Install it with composer require industrious/laravel-scheduler-output-to-url. Discover more Laravel packages by industrious or browse all Laravel packages to compare alternatives.

Last updated

Laravel Scheduler Output to Url

About this package

Laravel scheduler output to url was created for the sole purpose to have the ability to submit the scheduled command output to a designated URL I.E. https://healthchecks.io/ via HTTP request (I.E. POST/GET etc).

Example

$schedule
    ->command(SomeCommand::class)
    ->dailyAt('00:00')
    ->sendOutputToUrl('https://hc-ping.com/uuid-here');
Comments