Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Select Box #4

Open
Bronxphoneix opened this issue Feb 23, 2022 · 2 comments
Open

Select Box #4

Bronxphoneix opened this issue Feb 23, 2022 · 2 comments

Comments

@Bronxphoneix
Copy link

Merhaba, öncelikle teşekkürler, selectbox içine nasıl getirebiliriz,

select(['Antalya', 'İstanbul'])->get() as $il=>$ilce){ echo $ilce; } ?>

pro değilim.

@merkdev
Copy link
Owner

merkdev commented Feb 25, 2022

Selamlar,

<?php $cities = $turkey->select('*')->get(); ?>
<select name="cities">
<?php foreach($cities as $city) { ?>
<option value="<?php echo $city; ?>"><?php echo $city; ?></option>
<?php } ?>
</select>

Bu şekilde dener misiniz?

@Bronxphoneix
Copy link
Author

Bronxphoneix commented Feb 27, 2022 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants