Skip to content

The use Keyword

The use keyword imports classes from other namespaces.

This avoids writing the full namespace every time.

use App\Models\User;
$user = new User();