No hint path defined for [folder] in laravel?

No hint path defined for [folder] in laravel.
There could be several reasone for this error in laravel.
But most of time it works like a charm to solve this probelm - No hint path defined for

If you will check your view file which you have include in your controller or routes.
then  you will find that on view file you have some code like this in your view/file.php

@extends('Folder::layouts.default')

Or

@include('Folder::includes.header')

to pass the view in templates

so where folder is mention you can change the folder  path where your file is located.

Comments