Skip to content

Instantly share code, notes, and snippets.

@monbang
Created March 31, 2020 11:17
Show Gist options
  • Save monbang/726cf06985a871e524463664b8922103 to your computer and use it in GitHub Desktop.
Save monbang/726cf06985a871e524463664b8922103 to your computer and use it in GitHub Desktop.
formbutton-php
<form action="{{ $action }}" method="post">
@csrf
@method($method ?? 'post')
<button type="submit">{{ $slot }}</button>
</form>
<x-form-button :action="route('doSomething')">
Do something
<x-form-button />
<x-form-button :action="route('model.delete', $model)" method="delete">
Delete model
<x-form-button />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment