@dalton_moen
To create a dropdown in Laravel, you can use the Form
facade provided by Laravel Collective. Here's an example of how you can create a dropdown in a Laravel blade template:
1
|
composer require "laravelcollective/html":"^6.0" |
1 2 3 4 5 6 7 8 9 10 |
'providers' => [ // Other service providers... CollectiveHtmlHtmlServiceProvider::class, ], 'aliases' => [ // Other aliases... 'Form' => CollectiveHtmlFormFacade::class, 'Html' => CollectiveHtmlHtmlFacade::class, ], |
1
|
{!! Form::select('dropdown_name', $options, null, ['class' => 'form-control']) !!} |
In this example:
That's it! You have successfully created a dropdown in Laravel using Laravel Collective.