waiting sa desc ng Ordering Web
```bash
git clone https://github.com/your-username/fiweb.git
```
- Uncomment the following lines:
# DB_HOST=127.0.0.1 # DB_PORT=3306 # DB_DATABASE=fiweb # DB_USERNAME=root # DB_PASSWORD=
- The DB_PORT value depends on your setup, mine is at 3307.
- Run the following command from the terminal to install the required Laravel packages:
- Ctrl + Shift + ` to open terminal
composer install
- Run the following command to generate the application key:
php artisan key:generate
- Run the migration to set up the database tables:
php artisan migrate
- Finally, start the Laravel development server:
php artisan serve
- Open your browser and navigate to http://127.0.0.1:8000 to access the Ordering Website.
Laravel has the most extensive and thorough documentation and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.
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 thousands of 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.
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 taylor@laravel.com. All security vulnerabilities will be promptly addressed.
The Laravel framework is open-sourced software licensed under the MIT license.