PHP code example of vitexsoftware / ease-twbootstrap5
1. Go to this page and download the library: Download vitexsoftware/ease-twbootstrap5 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/ */
vitexsoftware / ease-twbootstrap5 example snippets
use Ease\TwBootstrap5\Alert;
$alert = new Alert('This is a success alert!', 'success');
echo $alert->draw();
use Ease\TwBootstrap5\Badge;
$badge = new Badge('New', 'primary');
echo $badge->draw();
use Ease\TwBootstrap5\Card;
$card = new Card('Card Title', 'This is some text within a card body.');
echo $card->draw();
use Ease\TwBootstrap5\Container;
$container = new Container('This is a container.');
echo $container->draw();
use Ease\TwBootstrap5\Form;
$form = new Form('POST', '/submit');
$form->addItem(new Input('text', 'username', 'Username'));
echo $form->draw();
use Ease\TwBootstrap5\LinkButton;
$linkButton = new LinkButton('Click Me', 'https://example.com', 'primary');
echo $linkButton->draw();
use Ease\TwBootstrap5\Navbar;
$navbar = new Navbar('My Website', [
'Home' => '#home',
'About' => '#about',
'Contact' => '#contact'
]);
echo $navbar->draw();
use Ease\TwBootstrap5\Row;
$row = new Row([
new Col('Column 1', 6),
new Col('Column 2', 6)
]);
echo $row->draw();
use Ease\TwBootstrap5\SubmitButton;
$submitButton = new SubmitButton('Submit', 'primary');
echo $submitButton->draw();
use Ease\TwBootstrap5\Table;
$table = new Table([
['Header 1', 'Header 2'],
['Row 1 Col 1', 'Row 1 Col 2'],
['Row 2 Col 1', 'Row 2 Col 2']
]);
echo $table->draw();
use Ease\TwBootstrap5\WebPage;
$page = new WebPage('My Web Page');
$page->addItem(new Container('This is the main content.'));
echo $page->draw();