2
Currently I have ventured into the framework laravel
and in some cases I came across a command in the header of my files just below the namespace
called illuminate
.
For example:
use Illuminate\Database\Eloquent\Model;
I’d like to know exactly how this works illuminate
? What good is it? How should I use it?
Already I appreciate the support.
I don’t understand the question. If you must know,
Illuminate
is Laravel’s "vendor namespace".– Wallace Maxters
It’s a given name for a set of libs, just as Cakephp uses the "namespace vendor"
Cake
, basically Illuminate is the set of libs that make up the "core" of the https://github.com/laravel/framework/tree/5.6/src/Illuminate framework... briefly, Illuminate is a given name to identify all libs belonging to it. Don’t worry, it’s not conspiracy theory :)– Guilherme Nascimento