Created
May 1, 2023 15:04
-
-
Save mansha99/defa0a8bd7d260f574003e867710fde4 to your computer and use it in GitHub Desktop.
resources/views/livewire/inventors.blade.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<select wire:model="invention"> | |
@foreach ($list as $k => $v) | |
<option value="{{ $k }}">{{ $k }}</option> | |
@endforeach | |
</select> invented by | |
{{ $inventor }} | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment