PHP code example of helmesvs / laravel-notify

1. Go to this page and download the library: Download helmesvs/laravel-notify library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

helmesvs / laravel-notify example snippets

 php
'options' => [
        'lib' => 'toastr',
        'style' => 'custom'
]
 php
'ToastrOptions' => [
        "closeButton" => false,
        "closeHtml" => '',
        "newestOnTop" => true,
        "progressBar" => false,
        ...
]
 php
'PNotifyOptions' => [
        'title_escape' => false,
        'text_escape' => false,
        'styling' => 'brighttheme',
        'addclass' => '', 
        ...
]