MOTOSHARE 🚗🏍️
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
🚀 Everyone wins.

Start Your Journey with Motoshare

Auth::check() at middleware

error

!Auth::check() in the middleware to check if user is logged in or not, i am trying to get property of non-object but it shows an error like below: at => /Http/Middleware/VerifyCsrfToken.php $response->headers->setCookie

 admin middleware:

public function handle($request, Closure $next) { if (!Auth::check()) { return “Permission Denied.”; } return $next($request); }

Solution:

The error is encountering, “trying to get property of non-object,” suggests that the $response variable in the middleware is not an object as expected. To resolve this issue, you need to return an instance of a response object instead of a string. Here’s an updated version of your code:

Instead of returning a string, the middleware should return an instance of a response object. To achieve this, please consider the following approach:

public function handle($request, Closure $next) { if (!Auth::check()) { return response(‘Permission Denied.’, 401); } return $next($request); }

Related Posts

Master DataOps Skills in the United Kingdom and London

The United Kingdom has become one of the world’s most dynamic technology ecosystems—with London standing out as a global hub for finance, innovation, and digital transformation. As…

Mastering DataOps Skills in the Netherlands

In today’s fast-moving digital landscape, data has become the foundation of innovation, automation, and decision-making. Whether an organization is building AI-powered systems, optimizing analytics, or enabling real-time…

Unlocking Your DataOps Career: Expert Training & Certification with DevOpsSchool

Elevate your IT career with DataOps expertise from DevOpsSchool, the market leader in tech training and certification. This in-depth review covers everything you need to know about…

DataOps Training in India: Master DataOps with DevOpsSchool’s Expert-Led Course

DevOpsSchool stands as a premier destination for cutting-edge IT training, trusted by professionals and enterprises alike for its commitment to delivering hands-on, career-focused learning experiences. The DataOps…

Master DataOps: Certification Training & Career Boost Guide

In today’s data-driven world, where businesses in Toronto, Ottawa, Vancouver, Montreal, and Calgary are racing to harness insights from vast datasets, the need for agile and efficient…

Mastering Continuous Testing: The Key to Faster, More Reliable DevOps Pipelines

In the fast-paced world of software development, where releases happen multiple times a day and downtime can cost millions, continuous testing has emerged as a game-changer. Imagine…

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x