obeikan-digital-solutions / phpnotification
This is my package phpnotification
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 2
Language:Blade
Requires
- php: ^8.0
- illuminate/database: ^8.0|^9.0
- illuminate/support: ^8.0|^9.0
- spatie/laravel-package-tools: ^1.9
Requires (Dev)
- mockery/mockery: ^1.4
- orchestra/testbench: ^6.23|^7.0
This package is not auto-updated.
Last update: 2024-11-04 05:33:56 UTC
README
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
Installation
You can install the package via composer:
composer require obeikan-digital-solutions/phpnotification
You can publish the config file with:
php artisan vendor:publish --tag="phpnotification-config"
This is the contents of the published config file:
return [ 'allModule' => false, 'module' => "Your Module name ",//example Engagement ];
Usage
//in /user modal use trait use CustomNotifiable; // in includes/header.blade.php we add this to show notifications @include('phpnotification::notifications') // in layout.blade.php we in script section after jquery @include('phpnotification::scripts')
Generate new Notifiation class use this commend
php artisan phpnotification:generate YourClassName
Optionally, you can publish the views using
php artisan vendor:publish --tag="phpnotification-views"
then use
@include('vendor.phpnotification.notifications')
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.