It's a simple Laravel Project contains VUE framework inside html page, just page gets,create data to database by simple API.
after you download/clone the project, you should follow these steps:
1- go to project directory and open terminal/cmd.
2- copy the .env.example file and rename it to .env
3- run the following commands:
- composer update.
- php artisan key:generate.
- php artisan migrate. "make sure that DB name is in .env file, enter yes to create the database"
- php artisan db:seed
4- finally run "php artisan serve"
5- "optional" if you want to create 5 more default products using factory:
- run php artisan tinker
- \App\Models\Item::factory(5)->create().
- press ctrl+c to exit tinker.
You may also try the Laravel Bootcamp, where you will be guided through building a modern Laravel application from scratch.
If you don't feel like reading, Laracasts can help. Laracasts contains over 2000 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel Patreon page.
- Vehikl
- Tighten Co.
- Kirschbaum Development Group
- 64 Robots
- Cubet Techno Labs
- Cyber-Duck
- Many
- Webdock, Fast VPS Hosting
- DevSquad
- Curotec
- OP.GG
- WebReinvent
- Lendio
Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the Laravel documentation.
In order to ensure that the Laravel community is welcoming to all, please review and abide by the Code of Conduct.
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [email protected]. All security vulnerabilities will be promptly addressed.
The Laravel framework is open-sourced software licensed under the MIT license.