PHP code example of teofanis / searchable-dropdown

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

    

teofanis / searchable-dropdown example snippets


    
'placeholders' => [
        'default-no-results-message' => 'No Results Found',
        'default-placeholder' => 'Select an option',
        'default-search-placeholder' => 'Search...',
    ]
    

      'settings' => [
        'default-is-multiselect' => false,
        'default-is-in-livewire' => false, 
        'default-list-item-alignment' => 'text-left'
    ],
    

    'styles' => [
        'theme' => [
            'default-text-color' => 'text-gray-900',
            'default-primary-color' => 'indigo-600',
            'default-secondary-color' => 'white',
        ],
        'classes' => [ 
            'wrapper' => 'inline-block w-full rounded-md shadow-sm',
            'label' => 'block tracking-wide text-xs font-bold mb-4 char-style-medium cursor-pointer leading-none text-mbr_blue font-hairline',
            'button' => 'relative z-0 w-full py-2 pl-3 pr-10 text-left transition duration-150 ease-in-out bg-white border border-gray-300 rounded-md cursor-default focus:outline-none focus:shadow-outline-blue focus:border-blue-300 sm:text-sm sm:leading-5',
        ]
    ],
    
bash
php artisan vendor:publish --tag=searchable-dropdown-config
php artisan vendor:publish --tag=searchable-dropdown-assets