1. Go to this page and download the library: Download arce/html 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/ */
// For Laravel 5.4 and later
protected $middlewareGroups = [
// For Laravel 5.8 and later this needs to be after the StartSession middleware
\Styde\Html\Alert\Middleware::class,
//...
];
// For Laravel 5.3, 5.2, 5.1
protected $middleware = [
//...
\Styde\Html\Alert\Middleware::class,
//...
];
Alert => Styde\Html\Facades\Alert
Field => Styde\Html\Facades\Field
Menu => Styde\Html\Facades\Menu
Form => Collective\Html\FormFacade
Html => Collective\Html\HtmlFacade
Alert::info('Your account is about to expire')
->details('Renew now to learn about:')
->items(['Laravel', 'PHP', 'And more!'])
->button('Renew now!', url('renew'), 'primary');