In api.php
Route::get('/abc', 'App\UserController@abc');
In UserController.php
public function abc()
{
$user = User::find('123456');
dd($user);
}
In User.php
public function __construct($attributes = array())
{
echo (' hello ');
}
Use postman to make HTTP REQUEST GET call
/abc
Return result
hello hello hello
User {#833
#fillable: array:4 [
0 => "first_name"
1 => "last_name"
2 => "email"
}
Thanks!!
No, the /abc route place at the top of api.php without any middleware auth
That is how Laravel works I suppose. It creates the blank object (User) and then query the data from DB to it (I am not sure what is the 3rd time for to be honest)
I never use constructor in Laravel app inside Model class.. there are surely other ways to accomplish what you need
Dear all,
I feel sorry about that. Today I repeat the experience again. The constructor have been called 2 times not 3 times.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community