PHPackages                             vildanbina/laravel-scheduler - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. vildanbina/laravel-scheduler

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

vildanbina/laravel-scheduler
============================

Service for scheduling and managing cron tasks in laravel application

021Blade

Since Nov 17Pushed 4y ago1 watchersCompare

[ Source](https://github.com/vildanbina/laravel-scheduler)[ Packagist](https://packagist.org/packages/vildanbina/laravel-scheduler)[ RSS](/packages/vildanbina-laravel-scheduler/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependenciesVersions (1)Used By (0)

[![build passed](https://camo.githubusercontent.com/493d67db6af902d3342e4bd94cc235f4e5bcfbb7e67496926f68ebc5e1c50ee5/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f76696c64616e62696e612f7363686564756c65722f6261646765732f6275696c642e706e673f623d6d6173746572)](https://camo.githubusercontent.com/493d67db6af902d3342e4bd94cc235f4e5bcfbb7e67496926f68ebc5e1c50ee5/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f76696c64616e62696e612f7363686564756c65722f6261646765732f6275696c642e706e673f623d6d6173746572)[![StyleCI](https://camo.githubusercontent.com/c6b7c8b62971f2b8c1d8224abc40f8aecd95909363f123949e68c12287e929d5/68747470733a2f2f7374796c6563692e696f2f7265706f732f3131383930333233372f736869656c643f6272616e63683d6d6173746572)](https://styleci.io/repos/118903237)[![Total Downloads](https://camo.githubusercontent.com/476a64e4a00de9d695937f8a62a1301d602ad7e9e821f2dda900cc61aceea1aa/68747470733a2f2f706f7365722e707567782e6f72672f76696c64616e62696e612f7363686564756c65722f642f746f74616c2e737667)](https://packagist.org/packages/vildanbina/scheduler)[![License](https://camo.githubusercontent.com/f6ad0ae06dc7ce54c77065924800e6300723146039f82e448ef79fe5f78a9d2b/68747470733a2f2f706f7365722e707567782e6f72672f76696c64616e62696e612f7363686564756c65722f6c6963656e73652e737667)](https://packagist.org/packages/vildanbina/scheduler)

Installation
============

[](#installation)

First steps
-----------

[](#first-steps)

Add Provider for Laravel &lt; 5.5

```
vildanbina\Scheduler\SchedulerServiceProvider::class,

```

Publish config and CronTasksList class files:

```
php artisan vendor:publish

```

and choose "Provider: vildanbina\\Scheduler\\SchedulerServiceProvider" if requested.

Files that must be published:

```
config/scheduler.php
app/Console/CronTasksList.php

```

Create database table:

```
 php artisan migrate
```

Let's finish setup
------------------

[](#lets-finish-setup)

###### Move your commands from `App\Console\Kernel` schedule() function to new file: `CronTasksList.php` trait.

[](#move-your-commands-from-appconsolekernel-schedule-function-to-new-file-crontaskslistphp-trait)

Add next line to schedule() function instead of list of commands:

```
