Skip to content

Instantly share code, notes, and snippets.

@jsdecena
Created August 26, 2019 08:06
Show Gist options
  • Save jsdecena/bc066dbc8c92b84ef82861eed4af055d to your computer and use it in GitHub Desktop.
Save jsdecena/bc066dbc8c92b84ef82861eed4af055d to your computer and use it in GitHub Desktop.
Form
@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