PHP code example of almeida / ui-kit-laravel

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

    

almeida / ui-kit-laravel example snippets


	'Almeida\UIKitLaravel\UIKitLaravelServiceProvider',

	UIKit::header('Some heading');

	'Almeida\UIKitLaravel\HtmlServiceProvider',


	{{ Form::text() }}
	{{ Form::checkbox() }}
	{{ Form::radio() }}
	{{ Form::submit() }}


	{{ Form::submit('Delete', ['feedback' => 'danger']) }}

	{{ Form::mutiple('roles', $list=[], $selected=[], $options=[]) }}