English 中文(简体)
Laravel - Namespaces
  • 时间:2024-09-17

Laravel - Namespaces


Previous Page Next Page  

Namespaces can be defined as a class of elements in which each element has a unique name to that associated class. It may be shared with elements in other classes.

Declaration of namespace

The use keyword allows the developers to shorten the namespace.

use <namespace-name>;

The default namespace used in Laravel is App, however a user can change the namespace to match with web apppcation. Creating user defined namespace with artisan command is mentioned as follows −

php artisan app:name SocialNet

Select Git

The namespace once created can include various functionapties which can be used in controllers and various classes.

Advertisements