elattar / pusher-notification
Pusher Notification Package
1.1
2023-11-21 11:50 UTC
Requires
- pusher/pusher-php-server: ^7.2
Requires (Dev)
- orchestra/testbench: dev-develop
This package is auto-updated.
Last update: 2025-03-27 22:35:30 UTC
README
- Install prepare package from HERE
- Install pusher notification package
composer require elattar/pusher-notification
- Publish Notification Module
php artisan vendor:publish --tag=elattar-pusher-notifications
- Enable Notification Module
php artisan elattar:pusher-notification-enable
- Publish migration file
php artisan notifications:table
php artisan migrate
app\Models\User.php
<?php namespace App\Models; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; class User extends Authenticatable { use Notifiable; public function receivesBroadcastNotificationsOn(): string { return 'notifications.users.' . $this->id; } }
config\app.php
<?php use Illuminate\Support\ServiceProvider; return [ 'providers' => ServiceProvider::defaultProviders()->merge([ ... App\Providers\BroadcastServiceProvider::class, ])->toArray(), ];
app\Providers\BroadcastServiceProvider.php
<?php namespace App\Providers; use Illuminate\Support\ServiceProvider; class BroadcastServiceProvider extends ServiceProvider { /** * Bootstrap any application services. */ public function boot(): void { require_once base_path('Modules/Notification/Routes/channels.php'); } }
routes\api.php
<?php use App\Http\Controllers\FileManagerController; use App\Http\Controllers\SelectMenuController; use Illuminate\Support\Facades\Route; /* |-------------------------------------------------------------------------- | API Routes |-------------------------------------------------------------------------- | | Here is where you can register API routes for your application. These | routes are loaded by the RouteServiceProvider and all of them will | be assigned to the "api" middleware group. Make something great! | */ Broadcast::routes(); // Broadcast::routes(['middleware' => ['auth:sanctum']]); // add auth middleware
Pusher Configurations
.env
BROADCAST_DRIVER=pusher
PUSHER_APP_ID=YOUR_Pusher_ID
PUSHER_APP_KEY=YOUR_PUSHER_KEY
PUSHER_APP_SECRET=YOUR_PUSHER_SECRET
PUSHER_SCHEME=https
PUSHER_APP_CLUSTER=YOUR_PUSHER_CLUSTER
PUSHER_HOST=
PUSHER_PORT=443
To test that out try that block of code
<!DOCTYPE html> <html> <head> <title>Document</title> </head> <body> <!-- Axios --> <script src="https://js.pusher.com/7.2/pusher.min.js"></script> <!-- <script src="main.js"></script> --> <script> // Enable pusher logging - don't include this in production Pusher.logToConsole = true; const token = "2|FVyVdy317Mp866IP5p0G9JyVv5FiwR3qAGTlnjgL", PUBLIC_KEY = 'Your_Public_Key', CLUSTER ='mt1', AUTH_ENDPOINT = 'https://yourdomain.com/broadcasting/auth', CHANNEL_NAME = `private-notifications.users.${LocalStorage.getItem('loggedUserId')}`; EVENT_NAME = "Illuminate\\Notifications\\Events\\BroadcastNotificationCreated"; let pusher = new Pusher(PUBLIC_KEY, { cluster: CLUSTER, channelAuthorization: { withCredentials:true, endpoint: AUTH_ENDPOINT, headers: { "Authorization": `Bearer ${token}`, } } }); let channel = pusher.subscribe(CHANNEL_NAME); channel.bind(EVENT_NAME, function (data) { console.log(data); }); </script> </body> </html>