The use Keyword
The use keyword imports classes from other namespaces.
This avoids writing the full namespace every time.
Example
Section titled “Example”use App\Models\User;
$user = new User();The use keyword imports classes from other namespaces.
This avoids writing the full namespace every time.
use App\Models\User;
$user = new User();