Skip to content

Instantly share code, notes, and snippets.

@mandado
Forked from diegofelix/gist:8314644
Created January 8, 2014 12:01
Show Gist options
  • Save mandado/8315846 to your computer and use it in GitHub Desktop.
Save mandado/8315846 to your computer and use it in GitHub Desktop.
<?php
/*
|--------------------------------------------------------------------------
| Delete form macro
|--------------------------------------------------------------------------
|
| This macro creates a form with only a submit button.
| We'll use it to generate forms that will post to a certain url with the DELETE method,
| following REST principles.
|
*/
Form::macro('delete',function($form_parameters, $button_label, $button_options = null){
$form_parameters['method'] = 'DELETE';
return Form::open($form_parameters)
. Form::submit($button_label, $button_options)
. Form::close();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment