PHP code example of airoinfo / laravel-alert

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

    

airoinfo / laravel-alert example snippets


'provider' => [
	// package ServiceProvider
	Airo\Alert\AlertServiceProvider::class,
]

'alias' => [
	'Alert' => Airo\Alert\AlertFacade::class,
]

Vue.component('notify-component', 

@

use Airo\Alert\AlertFacade;
class HomeController
{
	public function login()
	{
		//when Login success
		Alert::success(['message1', 'message2', '...']);

		//when login fail
		Alert::errors(['message1', 'message2', '...']);
	}
}