Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException
The GET method is not supported for this route. Supported methods: PUT, PATCH, DELETE.
http://localhost:8000/admin/users/3
please change in lists.blade.php
$('#users-table').on('click', '.destroy', function (e) {
e.preventDefault();
to
$('#users-list').on('click', '.destroy', function (e) {
e.preventDefault();
please change in lists.blade.php
to