Giter Site home page Giter Site logo

Comments (4)

crynobone avatar crynobone commented on June 2, 2024

Hey there, thanks for reporting this issue.

We'll need more info and/or code to debug this further. Can you please create a repository with the command below, commit the code that reproduces the issue as one separate commit on the main/master branch and share the repository here?

Please make sure that you have the latest version of the Laravel installer in order to run this command. Please also make sure you have both Git & the GitHub CLI tool properly set up.

laravel new bug-report --github="--public"

Do not amend and create a separate commit with your custom changes. After you've posted the repository, we'll try to reproduce the issue.

Thanks!

from framework.

mawuli-agbenyo-creator avatar mawuli-agbenyo-creator commented on June 2, 2024

It might be challenging to reproduce this bug, but I can add you as a contributor to the project so you can examine the issue.

from framework.

mawuli-agbenyo-creator avatar mawuli-agbenyo-creator commented on June 2, 2024

`Route::prefix("School")->group(function () {

Route::get('get_bills_for_school', [intel::class, 'get_bills_for_school'])->name('get_bills_for_school');

});`

` public function get_bills_for_school()
{
try {

        if (Auth::user()) {
            return Auth::user();
        } else {
            return response()->json([
                "status" => false,
                "message" => "User not found",
            ]);
        }
        
        $bills_data = tblbills::where('sch_code', Auth::user()->schoolCode);

        return response()->json([
            "status" => true,
            "data" => ResourceBills::collection($bills_data),

        ]);
    } catch (\Throwable $th) {
        //throw $th;
        return response()->json([
            "status" => false,
            "system" => true,
            "message" => 'Error: ' . $th->getMessage(),
        ], 500);
    }
}`     After authentication, some methods in a controller can successfully retrieve the authenticated user using Auth::user(), while other methods in the same controller cannot. This phenomenon is quite strange.  For Example this is the responds i get from this method `{

"status": false,
"message": "User not found"
}` I have encountered this problem multiple times in the past.

from framework.

ghanu119 avatar ghanu119 commented on June 2, 2024

@mawuli-agbenyo-creator
Have you added the Auth middleware in routes? As it did not available in your last comment where you added the Route definition. So, I am confirming.

from framework.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.