What is the purpose of illuminate in laravel?

-1

Currently I have ventured into framework laravel and in some cases I came across a command in the header of my files just below namespace called illuminate .

For example:

use Illuminate\Database\Eloquent\Model;

I'd like to know exactly how illuminate works? What is it for? How should I use it?

Thanks in advance for your support.

    
asked by anonymous 02.08.2018 / 03:34

1 answer

-1

Illuminate is part of the namespace.

As if it were a "folder", however, the goal is to logically group the framework entities.

Specifically "Illuminate" or else I'm mistaken is the maintainer of laravel.

    
24.12.2018 / 15:46