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.
- Host: GitHub
- URL: https://github.com/natthasath/demo-laravel-breeze-pulse
- Owner: natthasath
- Created: 2024-08-07T07:51:00.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-09-04T07:01:23.000Z (10 months ago)
- Last Synced: 2025-06-25T14:34:13.537Z (7 days ago)
- Topics: 11x, breeze, laravel, php, pulse
- Language: PHP
- Homepage: https://laravel.com/docs/master/pulse
- Size: 121 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.


### 🚀 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
```