https://github.com/engsahaly/realtime_course
Laravel Realtime Notifications Course on Udemy
https://github.com/engsahaly/realtime_course
broadcast broadcast-reciever broadcaster broadcasting broadcastreceiver laravel laravel-framework laravel-package notification notifications pusher pusher-channels pusherjs realtime realtime-database websocket websockets
Last synced: about 1 month ago
JSON representation
Laravel Realtime Notifications Course on Udemy
- Host: GitHub
- URL: https://github.com/engsahaly/realtime_course
- Owner: engsahaly
- Created: 2023-11-08T21:04:04.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-29T07:26:14.000Z (4 months ago)
- Last Synced: 2025-04-22T23:50:10.504Z (about 1 month ago)
- Topics: broadcast, broadcast-reciever, broadcaster, broadcasting, broadcastreceiver, laravel, laravel-framework, laravel-package, notification, notifications, pusher, pusher-channels, pusherjs, realtime, realtime-database, websocket, websockets
- Language: CSS
- Homepage: https://www.udemy.com/course/laravel-real-time-guide-pusher-websockets-echo-and-more/?referralCode=8FE70694ED15CD82909C
- Size: 1.88 MB
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Laravel Realtime Notifications Course Files on Udemy
![]()
**Created By :** Mahmoud Anwar
**Email :** [email protected]This is the main readme file for the code used in laravel realtime course on Udemy
## Installation
To get started, clone this repository.
```
git clone https://github.com/engsahaly/realtime_course.git
```Next, copy your `.env.example` file as `.env` and configure your Database connection.
```
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=YOUR-DATABASE-NAME
DB_USERNAME=YOUR-DATABASE-USERNAME
DB_PASSWORD=YOUR-DATABASE-PASSWROD
```## Run Packages and helpers
You have to all used packages and load helpers as below.
```
composer install
npm install
npm run build
```## Generate new application key
You have to generate new application key as below.
```
php artisan key:generate
```## Run Migrations and Seeders
You have to run all the migration files included with the project and also run seeders as below.
```
php artisan migrate
php artisan db:seed
```## Accessing Admin Panel
You can access admin login page using this url.
```
http://localhost:8000/admin/login
Email: [email protected]
Password: 123456789
```