| 404 route | php artisan route:list | wrong prefix/group in api file | align route declaration + clear route cache |
| 401 auth | check bearer/session guard | token mismatch or wrong guard | verify sanctum/auth config and middleware |
| 422 validation | inspect response errors | payload contract mismatch | sync request shape with endpoint contract |
| Reservation save fails | DB logs + transaction trace | deadlock/constraint violation | retry with backoff; review transaction scope |
| Queue not processed | php artisan queue:failed | worker down/config mismatch | restart worker + replay failed jobs |