The application has just started and our first priority is setting up a users system to allow users to be added and then for a user to be able to view all users in the system.
- Create a fresh database
- serve your application locally however you see fit
- update the .env file to allow the application to work
- run setup_script.sh in the bin directory.
- Navigate to http://YOUR_URL/admin/themes
- You will be prompted to login, once done activate the theme
- Begin working on the site
If you run into: No hint path defined for [theme].
- Navigate to http://YOUR_URL.com/admin/themes
- You will be prompted to login, once done activate the theme
All functionality for a Frostbite Laravel system is done in modules. We don't use Controllers but do use Helpers. All routes are done within the web.php of each module and will automatically register in the Laravel system.
There are 3 main folders, and 4 files, to make note of in this test.
This is where the test module lives and where all of your code for the module should reside.
This is where you would place any code that would create a table in the system
This is where you would place any code required for back-end functionality
If a model is decided to be needed it would be defined in this file.
Place all of your module routes here.
All pages for the Laravel App's Front-End user interaction can be found here:
resources/views/themes/frostbite/blade/page