How to set require path in laravel controller?

Member

by adan , in category: PHP Frameworks , 2 months ago

How to set require path in laravel controller?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by scotty_walker , a month ago

@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.