Laravel – Model Class not found
Laravel 5 promotes the use of namespaces for things like Models and Controllers. Your Model is under the App namespace, so your code needs to call it like this: As mentioned in the comments you can also use or import a namespace in to a file so you don’t need to quote the full path, like this: While I’m doing a … Read more