@adan
In Laravel, you can set the require path in a controller by importing the class with the use
statement at the top of the controller file.
For example, if you want to use the User
model in your controller, you can set the require path by adding use AppModelsUser;
at the top of your controller file.
Here is an example of how to set the require path for the User
model in a controller:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<?php namespace AppHttpControllers; use AppModelsUser; use IlluminateHttpRequest; class UserController extends Controller { public function index() { $users = User::all(); return view('users.index', ['users' => $users]); } } |
By importing the class with the use
statement, you can access the methods and properties of the class within your controller.