PHP code example of manavo / laravel-bootstrap-forms
1. Go to this page and download the library: Download manavo/laravel-bootstrap-forms 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/ */
manavo / laravel-bootstrap-forms example snippets
// File (Laravel 4): app/config/app.php
// OR
// File (Laravel 5): config/app.php
return array(
// ...
'providers' => array(
// ...
// 'Illuminate\Html\HtmlServiceProvider',
'Manavo\BootstrapForms\BootstrapFormsServiceProvider',
// ...
),
// ...
);