I finished the development of my backend. The view files are in the "resources / views / software" folder and now I would like to put some pages that created welcome.blade.php file that is in the frontend. How would I do this procedure? Could you give me a tutorial or give me a hand in this problem?
Well you could easily just as well create a directory:
resources / views / frontend where you can add all your front-end View Files.
You would also create here something like: resources / views / frontend / layouts / master.blade.php which would be your new Front End layout - if you wish to have a different design for the Front End.
Here you would load a different CSS / JS for the new layout.
All your new Front End Views would reference this as the Master Layout.
All your Controllers would also reference Views from this Folder Group.
It's quite straight-forward. Are you having trouble with something in particular?
I would like to use a foreach of each view I have on the frontend page, such as showing a software registered in the bank, information on the colocation and etc. My frontend is in:
I'm sorry, but I do not think I'm expressing correctly. I have a simple crud made with Laravel's Auth. I have the following Views:
resources / views / software / index.blade.php (where I own the section top)
resources / views / infra / index.blade.php (where I own the section mid)
resources / views / colocation / index.blade.php (where I own the section bot)
What I would like to do is to add within the resources / views / welcome.blade.php file an @yield of each view that was created, for example: