PHP code example of mrkatz / input

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

    

mrkatz / input example snippets

 php
{!! input()->text('name','value') !!}
 php
{!! input()
        ->select('DaysOfWeek',['1' => 'Monday','2' => 'Tuesday', '3' => 'Wednesday'])
        ->label('Choose a Day')
        ->placeholder('Choose A Day')
        ->wrap(null,'form-group','<div><div {class}>{label}</div><div {class}>{input}</div></div>') !!}