I am trying to set up a site using laravel, but I\'m really having trouble with basic things that the documentation just doesn\'t cover.
In this case, I see that it
As of Laravel 5.6, if you have this kind of structure and you want to include another blade file inside a subfolder,
|--- views
|------- parentFolder (Folder)
|---------- name.blade.php (Blade File)
|---------- childFolder (Folder)
|-------------- mypage.blade.php (Blade File)
name.blade.php
@include('parentFolder.childFolder.mypage')