Skip to content

Our team has developed a web application: "Coders' Room". This project uses Laravel as backend to implement a CRUD that facilitates the management of educational resources and we follow the Model-View-Controller (MVC) pattern. We implemented the styles with Tailwind CSS.

License

Notifications You must be signed in to change notification settings

KalypsoDev/coders-room

 
 

Repository files navigation

📝 P9 CODERS´ ROOM

landing-page


Pedagogical Objective

To be introduced to full stack web development using PHP with Laravel and MySQL. The project allows the application of concepts such as form handling, database queries, data validation and information manipulation.

Context / Need

This is a functional web application of a resource manager, where users can add, edit and delete resources. The application allows users to manage their resources efficiently, keeping an organised record.

Final Result

landing-page

🛠️ Tecnologies:

For this project we have used :


💻 Installation Steps:

  1. Download and Install Node.js: Visit the officialwebsite and download the version compatible with your operating system. Follow the installation instructions provided on the website.

  2. Download and Install XAMPP: Visit the official XAMPP website and download the version compatible with your operating system (Windows, macOS or Linux). Follow the installation instructions provided on the website.

  3. Download and Install Composer: Visit the official web and download the version compatible with your operating system. Follow the installation instructions provided on the website.

  4. Start XAMPP and Apache: After installing XAMPP, start the application. Start the Apache server from the XAMPP control panel.

  5. You can use a compatible database (e.g. MySQL, PostgreSQL), in our case MySQL is used. Open PHPMyAdmin in your web browser and create the database you are going to work with, for example :

  • Click on "SQL" in the top navigation bar.
  • In the SQL query window, paste the provided SQL code:
CREATE DATABASE coders_room; 
  1. Clone the repository.

  2. Place the project in the htdocs folder:

  • In XAMPP, the home directory of the web server is htdocs. Place the project in this directory.
  1. Open the project in Visual Studio Code (a source code editor developed by Microsoft for Windows, Linux, macOS and Web).

  2. Open the project terminal in Visual Studio Code and run composer install and npm install.

  3. Then copy the Configuration File with the following command cp .env.example . env. Configure your file . env with details of your environment, such as the connection to the database.

  4. Then you must generate the Application Key with the following command php artisan key:generate.

  5. Then run Migrations and Seeds with the following command php artisan migrate --seed. This will configure the database structure, create the necessary tables and populate them with the test data that was preset in the project.

  6. Start Development Server : Run the following command php artisan serve. The application will be available in http://localhost:8000 (or on the port specified by the console).

  7. In another terminal you must Compile Assets with the command npm run dev. This command will compile the assets and place them in the appropriate folder for use in the application.

  8. Access to the App: Open your browser and visit http://localhost:8000. You should see your application running.

  9. Access your project in the browser: Open your web browser and visit the project path with localhost first.

  10. Enjoy it.

📜License

This project is licensed under the terms of the MIT license. This means that you can use, copy, modify and distribute the code freely, as long as you acknowledge the original authorship and do not use it for commercial purposes.

👩‍💻Authors

Created with 💜 by:

About

Our team has developed a web application: "Coders' Room". This project uses Laravel as backend to implement a CRUD that facilitates the management of educational resources and we follow the Model-View-Controller (MVC) pattern. We implemented the styles with Tailwind CSS.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 68.2%
  • Blade 31.4%
  • Other 0.4%