moeen-basra / laravel-react

Laravel 8 and React 17 boilerplate

Home Page:http://laravel-react.moeen.me/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Delete Button is calling wrong method (delete instead of destroy)

j0eii opened this issue · comments

commented

Delete Button is calling wrong method (delete instead of destroy)

Bug fix :
app/Http/Controllers/Api/ArticleController.php : 127

public function destroy($id)

Change to

public function delete($id)
commented

Thanks for mentioning fixed!