Firstly, this isn't a Laravel problem. This is a PHP issue.
This is a limitation in PHP and it's class implementation.
You're attempting to assign an attribute on the class with another variable before the class has instantiated - as far as PHP's concerned, the $test
variable isn't usable until an instance of the User
class is created.
What are you attempting to do?
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community