milanarandjelovic / noty
Noty notification package for Laravel
v1.0.0
2019-03-17 12:12 UTC
Requires
- php: >=7.1.3
Requires (Dev)
- orchestra/testbench: ^3.7
- phpunit/phpunit: ^6.2|^7.0
This package is auto-updated.
Last update: 2024-11-18 07:52:55 UTC
README
Installation Steps
Require the package
After create your new Laravel application you can include Noty package with following comand:
composer require milanarandjelovic/noty
Add Provider and Alias
Add Provider and Alias inside of your config/app.php
.
'providers' => [ // other providers MA\Noty\NotyServiceProvider::class, ] 'aliases' => [ // other aliases 'Noty' => MA\Noty\Facades\Noty::class, ]
Publish config and assets
As optional if you want to modify the default configuration, you can publish the configuration file:
php artisan vendor:publish --provider="MA\Noty\NotyServiceProvider" --tag="config" php artisan vendor:publish --provider="MA\Noty\NotyServiceProvider" --tag="public" --force
Usage
Include Noty assets and styles in your main view template:
<!doctype html> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Laravel</title> @noty_styles </head> <body> <h1>Main view</h1> @noty_scripts @noty_render </body> </html>
Example:
noty()->info('Info Message', 'Info') ->success('Success Message', 'Success') ->error('Error Message', 'Error') ->warning('Warning Message', 'Warning');
License
The Noty is open-sourced software licensed under the MIT license.