If I have multiple nested PHP files that relate to a view, where should I put them? In the app folder, resources\views folder, resources\assets folder?
resources\views folder structure:
lemon.blade.php contents:
@include('lemon.top.top')
@include('lemon.bottom.bottom')
If these subfiles aren't included in the resources\views folder, how do I reference them in lemon.blade.php?

resources/views-- what's not working?