InterviewSolution
Saved Bookmarks
| 1. |
What is @parent in laravel |
|
Answer» It means the CLASS that you see that in is calling the BOOT METHOD for the class it is extending. As an example, if you see it in the User model and it is extending Illuminate\Database\Eloquent\Model class, it is calling the boot method for that Model class.Explanation: |
|