Skip to content

Instantly share code, notes, and snippets.

@bishoyAtif
Last active May 25, 2018 13:10
Show Gist options
  • Save bishoyAtif/4b4521ae279a5e765ce4ab43dd04c5f1 to your computer and use it in GitHub Desktop.
Save bishoyAtif/4b4521ae279a5e765ce4ab43dd04c5f1 to your computer and use it in GitHub Desktop.
{ data: null,
render: function(data){
var edit_button = '<a href="' + data.edit_url + '" class="btn btn-primary" role="button" aria-pressed="true">Edit</a>';
var delete_button = '<form action="' + data.delete_url + '" method="POST"><input type="hidden" name="_method" value="delete">{{csrf_field()}}<button type="submit" class="btn btn-danger">Delete</button>';
return edit_button + delete_button;
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment