PHP code example of i9w3b / alert-message

1. Go to this page and download the library: Download i9w3b/alert-message 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/ */

    

i9w3b / alert-message example snippets


@jquery
@toastr_css
@toastr_js
@alertmessage

// toastr sem título
toastr()->warning('My name is Inigo Montoya. You killed my father, prepare to die!')

// toastr com título
toastr()->success('Have fun storming the castle!', 'Miracle Max Says')

// toastr error com título
toastr()->error('I do not think that word means what you think it means.', 'Inconceivable!')

// Substitua as opções globais de configuração em 'config/alertmessage.php'
toastr()->success('We do have the Kapua suite available.', 'Turtle Bay Resort', ['timeOut' => 5000])

// config/alertmessage.php


return [
    
];