I'm working with Laravel 5.5 and I use Visual Studio Code for code editor. After last update, VS Code freaked out. The main problem is that I can't search files inside vendor folder with ctrl+p. I can search and find any files except inside vendor folder. Does vendor folder disallow searching? I can't find anything related to this. Does anyone have a similar problem? Thanks!
You can have models anywhere you want them. The built in User model is placed directory under app/. If you want to use a specific folder for all your models, create on inside app/ named Models and then namespace all your models with App\Models\X.
Thanks for the response, @kaidesu. Now that I know it is a do-it-however-you-wish matter, I created a folder inside the App\ namespace. Having models scattered in a directory with other directories in there gives me a bad feeling, just like a PHP file that has no classes and is a mishmash of statements.
Question:
I am working on a Laravel project on Replit and I notice that my css and js files are not being rendered, and only the images in my public folder are being displayed. Any solution on how to fix this please?