PHPackages                             eazybright/status-page - 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. eazybright/status-page

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

eazybright/status-page
======================

Status page for your laravel application

1.0.0(3y ago)811.5kMITPHPPHP ^8.1

Since Mar 11Pushed 3y ago1 watchersCompare

[ Source](https://github.com/Eazybright/status-page)[ Packagist](https://packagist.org/packages/eazybright/status-page)[ Docs](https://github.com/eazybright/status-page)[ RSS](/packages/eazybright-status-page/feed)WikiDiscussions main Synced 1mo ago

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

Status page for your laravel application
========================================

[](#status-page-for-your-laravel-application)

[![Latest Version on Packagist](https://camo.githubusercontent.com/d2cc43b187b2142f2a11e7ca893893029a8c2acf4c182ab2b312a29dcd537a17/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f65617a796272696768742f7374617475732d706167652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/eazybright/status-page)[![GitHub Tests Action Status](https://camo.githubusercontent.com/0bbdcc159e3f31b4fe293c8d6563fad1f1334fab5ce2358ef3d16ef862c7d6c2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f65617a796272696768742f7374617475732d706167652f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/eazybright/status-page/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/44a407fe1b17f009daaac8848916ed6f9ad3078ad5b91145fedfb5381fcb5636/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f65617a796272696768742f7374617475732d706167652f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/eazybright/status-page/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/51aa1b24dad1b60551a9ff73da3d7b22ee38c1b5f8bcbf1eaf23a1fee5c572a8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f65617a796272696768742f7374617475732d706167652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/eazybright/status-page)

How do you tell if your laravel application is up and running or if there's a downtime? [StatusPage](https://github.com/Eazybright/status-page) helps you communicate realtime status of your application.

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

[](#installation)

You can install the package via composer:

```
composer require eazybright/status-page
```

You can publish the public assets with:

```
php artisan vendor:publish --tag="status-page-assets"
```

The asset files will be available in `public/vendor/status-page` directory

You can publish the config file with:

```
php artisan vendor:publish --tag="status-page-config"
```

This is the contents of the published config file:

```
return [
    /**
     * Specify the location of the logo
    */
    'logo' => 'vendor/status-page/img/STATUSPAGE.png',
];
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="status-page-views"
```

Usage
-----

[](#usage)

Before the you can view the status page, some actions needs to be performed.

1. Copy the bash script to root folder, `health-check.sh` file will be generated.

```
php artisan status-page:copy-script
```

2. Crawl the routes in the application. This creates `urls.cfg` file in the public folder. This is where the available urls will be saved to.

```
php artisan status-page:generate-route
```

Optionally, you can include your urls to `urls.cfg` file.

```
Google https://google.com GET
Statsig https://statsig.com GET
```

3. Create the status page view.

```
php artisan status-page:create
```

Your view is available at localhost:8000/status-page

[![Status Page View](https://camo.githubusercontent.com/1ae910a3473bf7df342bd5a18a82d006155b0eae31076e3fdf6395f7b610afa1/68747470733a2f2f7265732e636c6f7564696e6172792e636f6d2f65617a796272696768742f696d6167652f75706c6f61642f76313637383534323538362f7374617475735f706167652e706e67)](https://camo.githubusercontent.com/1ae910a3473bf7df342bd5a18a82d006155b0eae31076e3fdf6395f7b610afa1/68747470733a2f2f7265732e636c6f7564696e6172792e636f6d2f65617a796272696768742f696d6167652f75706c6f61642f76313637383534323538362f7374617475735f706167652e706e67)

4. To automate `step 3`, you can schedule the artisan command `php artisan status-page:create` to run independently inside `app\Console\kernel.php` file.

```
    // ...

    /**
     * Define the application's command schedule.
     *
     * @param Schedule $schedule
     * @return void
     */
    protected function schedule(Schedule $schedule)
    {
        // ...

        $schedule->command('status-page:create')->hourly();
    }
```

How does it work?
-----------------

[](#how-does-it-work)

The script (`health-check.sh`) runs `curl` on every url in your config (`urls.cfg`) and appends the result of that run to a log file (`public/vendor/status-page/logs`). This log is then pulled dynamically from `status.blade.php` file and displayed in a easily consumable fashion.

Testing
-------

[](#testing)

```
composer test
```

Contributing
------------

[](#contributing)

Send in a PR - I'd love to integrate your ideas.

Credits
-------

[](#credits)

- [Kolawole Ezekiel](https://github.com/Eazybright)
- [Statsig status page](https://github.com/statsig-io/statuspage/)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity25

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

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

1164d ago

### Community

Maintainers

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

---

Top Contributors

[![Eazybright](https://avatars.githubusercontent.com/u/30163347?v=4)](https://github.com/Eazybright "Eazybright (26 commits)")

---

Tags

laravelstatusuptimelaravelstatus pageeazybright

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/eazybright-status-page/health.svg)

```
[![Health](https://phpackages.com/badges/eazybright-status-page/health.svg)](https://phpackages.com/packages/eazybright-status-page)
```

###  Alternatives

[spatie/laravel-data

Create unified resources and data transfer objects

1.8k28.9M627](/packages/spatie-laravel-data)[keepsuit/laravel-temporal

Laravel temporal.io

4875.0k](/packages/keepsuit-laravel-temporal)[worksome/exchange

Check Exchange Rates for any currency in Laravel.

123544.7k](/packages/worksome-exchange)[ralphjsmit/livewire-urls

Get the previous and current url in Livewire.

82270.3k4](/packages/ralphjsmit-livewire-urls)[marcelweidum/filament-expiration-notice

Customize the livewire expiration notice

9169.0k4](/packages/marcelweidum-filament-expiration-notice)[hydrat/filament-table-layout-toggle

Filament plugin adding a toggle button to tables, allowing user to switch between Grid and Table layouts.

6292.3k1](/packages/hydrat-filament-table-layout-toggle)

PHPackages © 2026

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