Reputation: 2579
Currently working on a Laravel project. The route that I'm working with is defined as a resource, but I'd like to change the post to use UpdateTicket() instead of store(). How would I overwrite just the post route of the defined resource?
Upvotes: 0
Views: 94
Reputation: 152870
The simplest solution would just be to call UpdateTicket()
in store()
public function store(){
return $this->UpdateTicket();
}
Upvotes: 1