An open API service indexing awesome lists of open source software.

https://github.com/natthasath/demo-laravel-breeze-pulse

Laravel Pulse is a comprehensive toolkit for Laravel developers that provides monitoring, debugging, and performance insights into applications. It offers real-time alerts, detailed metrics, and advanced error tracking to ensure your Laravel applications run smoothly and efficiently.
https://github.com/natthasath/demo-laravel-breeze-pulse

11x breeze laravel php pulse

Last synced: 1 day ago
JSON representation

Laravel Pulse is a comprehensive toolkit for Laravel developers that provides monitoring, debugging, and performance insights into applications. It offers real-time alerts, detailed metrics, and advanced error tracking to ensure your Laravel applications run smoothly and efficiently.

Awesome Lists containing this project

README

        

# 🎉 DEMO Laravel Breeze

Laravel Pulse is a comprehensive toolkit for Laravel developers that provides monitoring, debugging, and performance insights into applications. It offers real-time alerts, detailed metrics, and advanced error tracking to ensure your Laravel applications run smoothly and efficiently.

![version](https://img.shields.io/badge/version-1.0-blue)
![rating](https://img.shields.io/badge/rating-★★★★★-yellow)
![uptime](https://img.shields.io/badge/uptime-100%25-brightgreen)

### 🚀 Setup

- Create Project

```shell
composer create-project laravel/laravel example-app
```

- Install Package

```shell
composer require laravel/pulse
```

- Configure Environment

```shell
cp .env.example .env
```

- Vendor Publish

```shell
php artisan vendor:publish --provider="Laravel\Pulse\PulseServiceProvider"
php artisan vendor:publish --tag=pulse-dashboard
```

- Migrate

```shell
php artisan migrate
```

- Make Seeder

```shell
php artisan make:seeder
php artisan db:seed --class=PulseDataSeeder
```

- Make Job

```shell
php artisan make:job SlowJob
php artisan queue:work
```

### 🏆 Run

- [http://localhost:8000/pulse](http://localhost:8000/pulse) username : `admin` password : `admin`

```shell
php artisan serve
```