bootstrap-form
bootstrap-form copied to clipboard
PATCH method
The formbuilder is hardcoding either PUT or POST. From what I understand the PATCH method is preferred to PUT. Maybe this could be somewhat optional?
I think Laravel is interchangeable as far as PUT/PATCH goes, but PATCH has become preferred. Could look into swapping the default and making it adjustable in a future release.
Actually there is quite a difference: https://laracasts.com/discuss/channels/general-discussion/whats-the-differences-between-put-and-patch?page=1
Oh yeah, there's a semantic difference between the two HTTP methods, but Laravel tends to treat them the same (for example, I think the resource route sends both methods to the same place).