alert
Register Service Provider, (*1)
'provider' => array(
...
'Wikichua\Alert\AlertServiceProvider'
...
), (*2)
'aliases' => array(
...
'Alert' => 'Wikichua\Alert\Facades\Alert',
...
),, (*3)
To use it, (*4)
Alert::show();, (*5)
Publishing asset and config file, (*6)
php artisan config:publish wikichua/alert
php artisan asset:publish wikichua/alert, (*7)
Configuration, (*8)
return [
'use_default_asset' => false, // set to true if want to use default bootstrap css / js from package
'default_asset_path' => 'packages/wikichua/alert/', // try not to change this
];, (*9)