PHP code example of ckdot / laravel-foundation-forms

1. Go to this page and download the library: Download ckdot/laravel-foundation-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/ */

    

ckdot / laravel-foundation-forms example snippets



// File (Laravel 5): config/app.php

return array(
    // ...
    'providers' => array(
        // ...
        //Illuminate\Html\HtmlServiceProvider::class,
        Ckdot\FoundationForms\FoundationFormsServiceProvider::class,
        // ...
    ),
    // ...
);