PHPackages                             nrdq/laravel-totem - 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. nrdq/laravel-totem

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

nrdq/laravel-totem
==================

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

10.0(3y ago)0362MITPHPPHP ^8.0.0|^8.1.0

Since Feb 16Pushed 3y agoCompare

[ Source](https://github.com/nrdq/laravel-totem)[ Packagist](https://packagist.org/packages/nrdq/laravel-totem)[ RSS](/packages/nrdq-laravel-totem/feed)WikiDiscussions 9.0 Synced 1mo ago

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

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

[![Build Status](https://github.com/codestudiohq/laravel-totem/workflows/Laravel/badge.svg?branch=8.0)](https://github.com/codestudiohq/laravel-totem/workflows/Laravel/badge.svg?branch=8.0)[![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)

LaravelTotem9.x9.x8.x8.x7.x7.x6.x6.x5.85.x5.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.

© 2020 Roshan Gautam, All rights reserved.

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community19

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 56.3% 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

Every ~0 days

Total

2

Last Release

1181d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/d26978b95672efa005200a278531896be9f021e7542fcacb96309ed7cc943a8e?d=identicon)[nordique](/maintainers/nordique)

---

Top Contributors

[![roshangautam](https://avatars.githubusercontent.com/u/978347?v=4)](https://github.com/roshangautam "roshangautam (112 commits)")[![qschmick](https://avatars.githubusercontent.com/u/5342767?v=4)](https://github.com/qschmick "qschmick (45 commits)")[![tomschlick](https://avatars.githubusercontent.com/u/70184?v=4)](https://github.com/tomschlick "tomschlick (6 commits)")[![o-kima](https://avatars.githubusercontent.com/u/65353752?v=4)](https://github.com/o-kima "o-kima (3 commits)")[![daniel-g-wood](https://avatars.githubusercontent.com/u/33300119?v=4)](https://github.com/daniel-g-wood "daniel-g-wood (3 commits)")[![lroggen](https://avatars.githubusercontent.com/u/6265423?v=4)](https://github.com/lroggen "lroggen (2 commits)")[![jpscharf](https://avatars.githubusercontent.com/u/1039984?v=4)](https://github.com/jpscharf "jpscharf (2 commits)")[![jayjfletcher](https://avatars.githubusercontent.com/u/5743488?v=4)](https://github.com/jayjfletcher "jayjfletcher (2 commits)")[![shawnheide](https://avatars.githubusercontent.com/u/7305354?v=4)](https://github.com/shawnheide "shawnheide (2 commits)")[![carusogabriel](https://avatars.githubusercontent.com/u/16328050?v=4)](https://github.com/carusogabriel "carusogabriel (2 commits)")[![jorgemudry](https://avatars.githubusercontent.com/u/1508989?v=4)](https://github.com/jorgemudry "jorgemudry (1 commits)")[![Arkanius](https://avatars.githubusercontent.com/u/6404401?v=4)](https://github.com/Arkanius "Arkanius (1 commits)")[![locnguyen1842](https://avatars.githubusercontent.com/u/22882819?v=4)](https://github.com/locnguyen1842 "locnguyen1842 (1 commits)")[![marcoocram](https://avatars.githubusercontent.com/u/6926933?v=4)](https://github.com/marcoocram "marcoocram (1 commits)")[![matthewnessworthy](https://avatars.githubusercontent.com/u/5653887?v=4)](https://github.com/matthewnessworthy "matthewnessworthy (1 commits)")[![MesutErdemir](https://avatars.githubusercontent.com/u/159113?v=4)](https://github.com/MesutErdemir "MesutErdemir (1 commits)")[![michael-nordique](https://avatars.githubusercontent.com/u/197052472?v=4)](https://github.com/michael-nordique "michael-nordique (1 commits)")[![pierot](https://avatars.githubusercontent.com/u/46622?v=4)](https://github.com/pierot "pierot (1 commits)")[![solflare](https://avatars.githubusercontent.com/u/8484449?v=4)](https://github.com/solflare "solflare (1 commits)")[![timothyasp](https://avatars.githubusercontent.com/u/707699?v=4)](https://github.com/timothyasp "timothyasp (1 commits)")

---

Tags

laravelschedulemanagertotemCode Studio

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/nrdq-laravel-totem/health.svg)

```
[![Health](https://phpackages.com/badges/nrdq-laravel-totem/health.svg)](https://phpackages.com/packages/nrdq-laravel-totem)
```

###  Alternatives

[studio/laravel-totem

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

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

Delightfully simple forum software.

211.3M1.9k](/packages/flarum-core)[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)[psalm/plugin-laravel

Psalm plugin for Laravel

3274.9M308](/packages/psalm-plugin-laravel)

PHPackages © 2026

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