So the path that I write on the namespace is exactly the same as the path when I use (import) the class?
"It depends." lol...as always
It depends on the location of the file you're talking about, as well as the location of the class(es) you're importing.
Namespaces are a way to separate code and be able to reuse class names. Imagine if you had a class that you called MySuperDuperClass, and you found a package that you really wanted to use, but that package also had a class named MySuperDuperClass. How would you tell your app which one was which, and how to load them? That's why namespaces exist.
So when you create a class in laravel (let's skip making a package, you're probably not), you tell it the namespace, which is the directory structure that leads up to that file starting from the app directory since that's where we put our custom files for laravel. That app dir's namespace is App.
So if you created a new class within the app directory, you'd give it a namespace App; declaration. If you created another directory within the app directory and named it Models, like /app/Models/, then any class that you create in that directory would have namespace App\Models; declaration, and on it goes.
Now let's say you created a class named Bank in the Models directory, like /app/Models/Bank.php, and you wanted to use that class in a different directory, like maybe you have a /app/Http/Controllers/MyController.php controller file and wanted to use that model. You'd import it following that same directory structure except add on the class/model name after it, like use App\Models\Bank;. Then whenever you reference the Bank model, it will load the model from that directory. This allows you to have multiple Bank classes in multiple directories and use them. That sounds crazy in this example, but maybe you find a package that also uses a Bank class. Without namespaces you wouldn't be able to do that. Before namespaces existed, every classname needed to be unique. It was much harder to have packages and stuff and people would name the classnames crazy stuff so that they'd be unique, instead of just readable, like Bank.