$request variable returning values from another Project #44655
Unanswered
mabdalla123
asked this question in
Q&A
Replies: 1 comment 1 reply
-
If you use the same cache service and do not have distinctive enough names, this can be your issue. Try changing the app name in your .env |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Previously i was working on a Result System for a university link
and i have started another project Link , and when i started with api login point which contain the following
`
public function __invoke(LoginRequest $request)
when i just return the variable i get the following data
{ "student_id": 1, "semester_id": 1, "average": 100, "data": "yes", "details": [ { "subject_id": 1, "student_certified_hours": 1, "avarege": 1, "mark": "A", "point": 6 }, { "subject_id": 2, "student_certified_hours": 1, "avarege": 1, "mark": "A", "point": 6 } ], "email": "malika.purdy@example.org", "password": "'admin123'" }
why does the $request variable have this data from another project?
please note that when i started the new projects i used the same database and i a have dropped the old tables so this data is not related to database
Beta Was this translation helpful? Give feedback.
All reactions