PHP code example of dniccum / nova-state-select

1. Go to this page and download the library: Download dniccum/nova-state-select 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/ */

    

dniccum / nova-state-select example snippets


use Dniccum\StateSelect\StateSelect;

StateSelect::make('State')

StateSelect::make('State')
    ->useFullNames()

StateSelect::make('State')
    ->

StateSelect::make('State')
    ->customValues([
        'Ontario',
        'Alberta'
    ])

StateSelect::make('State')
    ->customValues([
        'ON' => 'Ontario',
        'AB' => 'Alberta'
    ])