@Laravel@jessarcher In Laravel Nightwatch, I would love a way to easily compare average request times this week compared to last week. I think this could be a quick win by improving the date filter component to something like this, giving the user full control.
@jeffrey_way@phpstorm Nice, Claude agent is good within PHPStorm AI Chat but doesn't seem to work with Laravel Boost and run Boost tools. Until then, I'm with Junie.
I've figured it out! The issue isn't with my code, it's with the settings on the environment. If I turn off hibernation, the app can successfully detect the real user IP. If I turn hibernation on, it gets a Cloudflare IP with $request->ip() @laravelphp
Laravel Cloud users, are you able to get the user's real IP address? I've tried configuring trustProxies but still getting what I think are rotating load balancing Clouldflare IPs. @taylorotwell
Laravel Cloud users, are you able to get the user's real IP address? I've tried configuring trustProxies but still getting what I think are rotating load balancing Clouldflare IPs.
@jobjen02 It's a Laravel 12 app, and in my bootstrap/app.php I have $middleware->trustProxies(at: '*'); as recommended by the docs if behind a proxy, but still does not work unfortunetely