Skip to content

Laravel error while sending a queue email

I’m facing the following error in the failed_jobs database table: ErrorException: Undefined property: stdClass::$subscription in /home/sm/public_html/app/Mail/NewCustomer.php:45 This is pretty basic. It means the property $subscription does not exists, but…the problem is that I don’t call $s…

Laravel 8 Auth middleware protected route failing

I am building my first Laravel app with the Metronic 8 Laravel theme. It uses Breeze for authentication. I changed a couple of things around – created a welcome page for non-logged-in users, and moved …