Created
May 13, 2023 18:28
-
-
Save mansha99/68ab05f9c6d268eaebc9cd047c1b5d70 to your computer and use it in GitHub Desktop.
View for Livewire Calculator Component
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 style="background: #aaffcc;padding:20;width:240px"> | |
<h5>Calculator Component</h5> | |
<form wire:submit.prevent="multiply"> | |
First<br/> | |
<input type="text" wire:model="n1" /> | |
<br/> | |
@error('n1') | |
{{ $message }} | |
@enderror | |
<br/>Second<br/> | |
<input type=text wire:model="n2" /> | |
<br/> | |
@error('n2') | |
{{ $message }} | |
@enderror | |
<br /> <br /> | |
<button type="submit">Multiply</button> | |
</form> | |
{{ $result }} | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment