Created
August 26, 2019 08:06
-
-
Save jsdecena/bc066dbc8c92b84ef82861eed4af055d to your computer and use it in GitHub Desktop.
Form
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
@foreach($users as $user) | |
<a href="/view/$user->id">View user</a> | |
<a href="/edit/$user->id">Edit user</a> | |
<form action="/delete/$user->id" method="post"> | |
<button type="submit">Delete user</button> | |
</form> | |
@endforeach |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment