1. Go to this page and download the library: Download codicastudio/multi-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/ */
codicastudio / multi-select example snippets
use OptimistDigital\MultiselectField\Multiselect;
public function fields(Request $request)
{
return [
Multiselect
::make('Favourite football teams', 'football_teams')
->options([
'liverpool' => 'Liverpool FC',
'tottenham' => 'Tottenham Hotspur',
'bvb' => 'Borussia Dortmund',
'bayern' => 'FC Bayern Munich',
'barcelona' => 'FC Barcelona',
'juventus' => 'Juventus FC',
'psg' => 'Paris Saint-Germain FC',
])
// Optional:
->placeholder('Choose football teams') // Placeholder text
->max(4) // Maximum number of items the user can choose
->saveAsJSON() // Saves value as JSON if the database column is of JSON type
->optionsLimit(5) // How many items to display at once
->reorderable() // Allows reordering functionality
->singleSelect() // If you want a searchable single select field
];
}