Customizing the Laravel
Aug
10
2018
10 Aug 2018

Customizing the Laravel View Path

Post Based on Laravel version 5.6.*

Laravel provides an easy way to change view paths.

Open the config/views.php .  The default value with Laravel as of version 5.6 are as follows:

'paths' => [
    resource_path('views'),
],

If you want your views inpublic/views .  You can change the configuration value to the following:

'paths' => [
    public_path('views'),
],

That’s it.

Happy Coding 🙂