Sakamoto Kazuma
Sakamoto Kazuma

Reputation: 2579

Laravel Overwrite Route::Resource to Alternate Method

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

Answers (1)

lukasgeiter
lukasgeiter

Reputation: 152870

The simplest solution would just be to call UpdateTicket() in store()

public function store(){
    return $this->UpdateTicket();
}

Upvotes: 1

Related Questions