PHPackages                             siosipit/cl-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. siosipit/cl-scheduler

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

siosipit/cl-scheduler
=====================

A Laravel package to manage your cron jobs through a beautiful dashboard

v1.0(7y ago)12MITPHPPHP &gt;=7.1

Since Jan 28Pushed 7y agoCompare

[ Source](https://github.com/siosipit/cl-task-scheduler)[ Packagist](https://packagist.org/packages/siosipit/cl-scheduler)[ RSS](/packages/siosipit-cl-scheduler/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (11)Versions (2)Used By (0)

 [![Laravel Totem](https://github.com/codestudiohq/laravel-totem/raw/1.0/resources/assets/img/totem.png?raw=true)](https://github.com/codestudiohq/laravel-totem/blob/1.0/resources/assets/img/totem.png?raw=true)

[![Build Status](https://camo.githubusercontent.com/0f597f012fb81a43f9288ec3605e1dfa1d39f562da4d1c0b2db240cca3bf82d5/68747470733a2f2f7472617669732d63692e6f72672f636f646573747564696f68712f6c61726176656c2d746f74656d2e7376673f6272616e63683d332e30)](https://travis-ci.org/codestudiohq/laravel-totem)[![StyleCI](https://camo.githubusercontent.com/3c3df726ca8774fa86e484893b9165c335af6ef94f81116c5bae7d03381dbac8/68747470733a2f2f7374796c6563692e696f2f7265706f732f39393035303839342f736869656c643f6272616e63683d332e30)](https://styleci.io/repos/99050894)[![License](https://camo.githubusercontent.com/46837658d5ffa5892cf9393adfb77dc918e729680c7b7bf3c27de45e969907b8/68747470733a2f2f706f7365722e707567782e6f72672f73747564696f2f6c61726176656c2d746f74656d2f6c6963656e73652e737667)](https://packagist.org/packages/studio/laravel-totem)

Introduction
============

[](#introduction)

[![Join the chat at https://gitter.im/laravel-totem/Lobby](https://camo.githubusercontent.com/cf22ba96073f6c2f8bf263e25f18714b2bc114ff30b33e0bd57aab122e890d26/68747470733a2f2f6261646765732e6769747465722e696d2f6c61726176656c2d746f74656d2f4c6f6262792e737667)](https://gitter.im/laravel-totem/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

Manage your `Laravel Schedule` from a pretty dashboard. Schedule your `Laravel Console Commands` to your liking. Enable/Disable scheduled tasks on the fly without going back to your code again.

Documentation
-------------

[](#documentation)

#### Compatiblity Matrix

[](#compatiblity-matrix)

LaravelTotem5.74.x5.63.x5.52.x5.41.x#### Installing

[](#installing)

`Totem` requires Laravel v5.4 and above, please refer to the above table for compatability. Use composer to install totem to your Laravel project

```
composer require studio/laravel-totem

```

> Laravel Totem supports auto package discovery for Laravel v5.5+, therefore service provider registration is not required in Laravel v5.5+

Add `TotemServiceProvider` to the `providers` array of your Laravel v5.4 application's config/app.php

```
Studio\Totem\Providers\TotemServiceProvider::class,
```

Once `Laravel Totem` is installed &amp; registered,

- Run the migration

```
php artisan migrate

```

- Publish `Totem` assets to your public folder using the following command

```
php artisan totem:assets

```

##### Table Prefix

[](#table-prefix)

Totems' tables use generic names which may conflict with existing tables in a project. To alleviate this the `.env` param `TOTEM_TABLE_PREFIX` can be set which will apply a prefix to all of Totems tables and their models.

#### Updating

[](#updating)

Please republish totem assets after updating totem to a new version

```
php artisan totem:assets

```

#### Configuration

[](#configuration)

##### Cron Job

[](#cron-job)

This package assumes that you have a good understanding of [Laravel's Task Scheduling](https://laravel.com/docs/5.4/scheduling) and [Laravel Console Commands](https://laravel.com/docs/5.4/artisan#writing-commands). Before any of this works please make sure you have a cron running as follows:

```
* * * * * php /path-to-your-project/artisan schedule:run >> /dev/null 2>&1

```

##### Web Dashboard

[](#web-dashboard)

`Laravel Totem`'s dashboard is inspired by `Laravel Horizon`. Just like Horizon you can configure authentication to `Totem`'s dashboard. Add the following to the boot method of your AppServiceProvider or wherever you might seem fit.

```
use Studio\Totem\Totem;

Totem::auth(function($request) {
    // return true / false . For e.g.
    return Auth::check();
});
```

By default Totem's dashboard only works in local environment. To view the dashboard point your browser to /totem of your app. For e.g. laravel.dev/totem.

##### Filter Commands Dropdown

[](#filter-commands-dropdown)

By default `Totem` outputs all Artisan commands on the Create/Edit tasks. To make this dropdown more concise there is a filter config feature that can be set in the `totem.php` config file.

Example filters

```
'artisan' => [
    'command_filter' => [
        'stats:*',
        'email:daily-reports'
    ],
],
```

This feature uses [fnmatch](http://php.net/manual/en/function.fnmatch.php) syntax to filter displayed commands. `stats:*` will match all Artisan commands that start with `stats:` while `email:daily-reports` will only match the command named `email:daily-reports`.

This filter can be used as either a whitelist or a blacklist. By default it acts as a whitelist but an option flag can be set to instead act as a blacklist.

```
'artisan' => [
    'command_filter' => [
        'stats:*',
        'email:daily-reports'
    ],
    'whitelist' => true,
],
```

If the value of whitelist is `false` then the filter acts as a blacklist.

`'whitelist' => false`

#### Middleware

[](#middleware)

`Laravel Totem` uses the default web and api middleware but if customization is required the middleware can be changed by setting the appropriate `.env` value. These values can be found in `config/totem.php`.

#### Making Commands available in `Laravel Totem`

[](#making-commands-available-in-laravel-totem)

All artisan commands can be scheduled. If you want to hide a command from Totem make sure you have the `hidden` attribute set to true in your command. For e.g.

```
protected $hidden = true;
```

From L5.5 onwards all commands are auto registered, so this wouldn't be a problem.

#### Command Parameters

[](#command-parameters)

If your command requires arguments or options please use the optional command parameters field. You can provide parameters to your command as a string in the following manner

```
name=john.doe --greetings='Welcome to the new world'

```

In the example above, name is an argument while greetings is an option

#### Console Command

[](#console-command)

In addition to the dashboard, Totem provides an artisan command to view a list of scheduled task.

```
php artisan schedule:list

```

### Screenshots

[](#screenshots)

##### Task List

[](#task-list)

[![Task List](https://github.com/codestudiohq/laravel-totem/raw/1.0/public/img/screenshots/tasks.png?raw=true)](https://github.com/codestudiohq/laravel-totem/blob/1.0/public/img/screenshots/tasks.png?raw=true)

##### Task Details

[](#task-details)

[![Task List](https://github.com/codestudiohq/laravel-totem/raw/1.0/public/img/screenshots/task-details.png?raw=true)](https://github.com/codestudiohq/laravel-totem/blob/1.0/public/img/screenshots/task-details.png?raw=true)

##### Edit Task

[](#edit-task)

[![Task List](https://github.com/codestudiohq/laravel-totem/raw/1.0/public/img/screenshots/edit-task.png?raw=true)](https://github.com/codestudiohq/laravel-totem/blob/1.0/public/img/screenshots/edit-task.png?raw=true)

##### Artisan Command to view scheduled tasks

[](#artisan-command-to-view-scheduled-tasks)

[![Task List](https://github.com/codestudiohq/laravel-totem/raw/1.0/public/img/screenshots/artisan.png?raw=true)](https://github.com/codestudiohq/laravel-totem/blob/1.0/public/img/screenshots/artisan.png?raw=true)

Changelog
---------

[](#changelog)

Important versions listed below. Refer to the [Changelog](CHANGELOG.md) for a full history of the project.

Credits
-------

[](#credits)

- [Roshan Gautam](https://twitter.com/@roshangautam)
- [OSS Contributors](https://github.com/codestudiohq/laravel-totem/graphs/contributors)

Bug reports, feature requests, and pull requests can be submitted by following our [Contribution Guide](CONTRIBUTING.md).

Contributing &amp; Protocols
----------------------------

[](#contributing--protocols)

- [Versioning](CONTRIBUTING.md#versioning)
- [Coding Standards](CONTRIBUTING.md#coding-standards)
- [Pull Requests](CONTRIBUTING.md#pull-requests)

License
-------

[](#license)

This software is released under the [MIT](LICENSE) License.

© 2017 Roshan Gautam, All rights reserved.

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 50% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2661d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/547049f9b17a0c424f2ec1b40ea4d631382e20bb5458d9ed0205737b572b69d7?d=identicon)[clintm](/maintainers/clintm)

---

Top Contributors

[![clint-clearlink](https://avatars.githubusercontent.com/u/126122792?v=4)](https://github.com/clint-clearlink "clint-clearlink (1 commits)")[![siosipit](https://avatars.githubusercontent.com/u/14191337?v=4)](https://github.com/siosipit "siosipit (1 commits)")

---

Tags

laravelschedulemanagertotemCode Studio

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/siosipit-cl-scheduler/health.svg)

```
[![Health](https://phpackages.com/badges/siosipit-cl-scheduler/health.svg)](https://phpackages.com/packages/siosipit-cl-scheduler)
```

###  Alternatives

[studio/laravel-totem

A Laravel package to manage your cron jobs through a beautiful dashboard

1.8k1.1M](/packages/studio-laravel-totem)[laravel/cashier

Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.

2.5k25.9M107](/packages/laravel-cashier)[laravel/pulse

Laravel Pulse is a real-time application performance monitoring tool and dashboard for your Laravel application.

1.7k12.1M99](/packages/laravel-pulse)[spatie/laravel-health

Monitor the health of a Laravel application

85810.0M83](/packages/spatie-laravel-health)[yadahan/laravel-authentication-log

Laravel Authentication Log provides authentication logger and notification for Laravel.

416632.8k5](/packages/yadahan-laravel-authentication-log)[spatie/laravel-enum

Laravel Enum support

3655.4M31](/packages/spatie-laravel-enum)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
