PHP code example of nexus633 / laravel-bootstrap-ui
1. Go to this page and download the library: Download nexus633/laravel-bootstrap-ui 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/ */
nexus633 / laravel-bootstrap-ui example snippets
use Nexus633\BootstrapUi\Facades\Toast;
use Nexus633\BootstrapUi\Facades\Flash;
// Temporäres Pop-up
Toast::success('Die Aktion war erfolgreich!');
// Persistenter Alert (oft nach Redirects)
Flash::warning('Bitte prüfen Sie Ihre Eingaben.');
bash
php artisan vendor:publish --tag=bootstrap-ui-assets