PHPackages                             exfriend/laravel-overseer - 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. exfriend/laravel-overseer

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

exfriend/laravel-overseer
=========================

Laravel Task Manager

1.0.3(9y ago)21131MITPHP

Since Aug 25Pushed 9y ago1 watchersCompare

[ Source](https://github.com/exfriend/laravel-overseer)[ Packagist](https://packagist.org/packages/exfriend/laravel-overseer)[ RSS](/packages/exfriend-laravel-overseer/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (1)Versions (2)Used By (1)

[![logo](docs/logo.png)](docs/logo.png)

Allows to control artisan commands from Web/API.

### Overview

[](#overview)

This package is designed primarily to control various background tasks from admin dashboard of your application.

Once installed, Laravel Overseer will provide a flexible JSON API to check, start, stop, monitor your commands in real-time.

When used with [**overseer-bootstrap**](https://github.com/exfriend/overseer-bootstrap) it will also give you a fully functional dashboard pages written in VueJS with Twitter Bootstrap 3.

If you use a different frontend or want to customize any part of it, you can publish the assets and/or use them as a reference to write your own frontend on top of Overseer's API.

All you have to do is extend your Artisan command from `Exfriend\Overseer\Command`instead of `Illuminate\Console\Command`.

Installation
------------

[](#installation)

`composer  require exfriend/laravel-overseer`

or

`composer require exfriend/overseer-bootstrap`

for bootstrap version with frontend.

Then, add the package's service provider to your config/app.php:

```
// ...
Exfriend\Overseer\OverseerServiceProvider::class,
Exfriend\OverseerBootstrap\OverseerBootstrapServiceProvider::class, //
