When I read code written in the Laravel framework, I see a lot of uses of ClassName::class. What does is the meaning of the modifier ::class? Is th
ClassName::class
::class
Please refer to this
::class Since PHP 5.5, the class keyword is also used for class name resolution.