Skip to content

devakb/project-task-worklog-management

Repository files navigation

Laravel Logo

Project Overview Video

Youtube: https://youtu.be/ONSVYdaEJAA

Developer

Amit Kumar Biswas akbdeveloper01@gmail.com

Project Name: PROJECT, TASK, AND WORKLOG MANAGEMENT SYSTEM USING LARAVEL AND FILAMENT
Submitted To: Amity Online

Laravel Application Installation Guide

Prerequisites

  1. PHP: Ensure you have PHP (version 8.2 or higher) installed.
  2. Composer: Install Composer, a dependency manager for PHP.
  3. Database: You need a database (MySQL, SQLite, etc.) installed and running.
  4. Git: Make sure you have Git installed to clone the repository.

Clone the Repository

Open your terminal and run the following command to clone the repository:

git clone https://github.com/devakb/worklog-management-system.git

Navigate into the cloned directory:

cd worklog-management-system

Install Dependencies

Run Composer to install the necessary PHP packages:

composer install

Configure the Environment

Copy the .env.example file to create your .env file:

cp .env.example .env

Open the .env file in a text editor and configure your database settings:

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your_database_name
DB_USERNAME=your_database_user
DB_PASSWORD=your_database_password

Generate Application Key

Generate a new application key:

php artisan key:generate

Run Migrations

Run the database migrations to set up your database structure:

php artisan migrate --seed

Install Frontend Assets

npm insall

npm run dev

Serve the Application

You can start the Laravel development server with:

php artisan serve

The application will be available at http://localhost:8000

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published