PHP code example of mahmudkuet11 / nova-multiselect-field
1. Go to this page and download the library: Download mahmudkuet11/nova-multiselect-field 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/ */
mahmudkuet11 / nova-multiselect-field example snippets
use Mahmud\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')
->max(4)
->optionsLimit(5)
];
}