Uploaded by Jose Rosario Jr

Rosario Jonathan Elective1-Activity1

advertisement
Jonathan F. Rosario
BSIT 3D
Elective 1

Activity
Laravel Installation
Tools Needed before running Laravel
 Xampp
 Composer-set up installer
Steps:
First, Install Xampp
1. Run Xampp Installer
2. Click Next.
3. Click Next.
4. Click Next.
5. Select a Language
6. Click Next
7. Click Next
8. Wait to finish the installation of xampp.
9. Click Finish
10. Open xampp, then start “apache” and “mysql”
Second, Install the Composer
1. Run Composer installer
2. Select “install for all users”
3. Check the “developer mode”, then click next
4. Click next
5. Browse C:\xampp\php\php.exe, then click next
6. Click Next
7. Click install
Finally, Install laravel using CMD
1. Create a Folder in XAMPPHTDOCS named “laravel”
2. Copy folder directory of newly created folder
3. Open cmd, type ‘cd’ and paste the copied folder directory to access the folder
created, then click enter
4. Type “composer create-project laravel/laravel laravel”, then click enter
5. Copy the directory of the folder
6. Type ‘cd’ and Paste the copied folder directory, then click enter
7. Type the “php artisan serve”, then click enter
8. Copy http://127.0.0.1:8000
9.
Paste the copied Development server in URL bar of the browser, then Click enter
10. Installation complete
Download