Youtube: https://youtu.be/ONSVYdaEJAA
Amit Kumar Biswas akbdeveloper01@gmail.com
Project Name: PROJECT, TASK, AND WORKLOG MANAGEMENT SYSTEM USING LARAVEL AND FILAMENT
Submitted To: Amity Online
- PHP: Ensure you have PHP (version 8.2 or higher) installed.
- Composer: Install Composer, a dependency manager for PHP.
- Database: You need a database (MySQL, SQLite, etc.) installed and running.
- Git: Make sure you have Git installed to 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
cd worklog-management-system
Run Composer to install the necessary PHP packages:
composer install
Copy the .env.example file to create your .env file:
cp .env.example .env
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 a new application key:
php artisan key:generate
Run the database migrations to set up your database structure:
php artisan migrate --seed
npm insall
npm run dev
You can start the Laravel development server with:
php artisan serve
The application will be available at http://localhost:8000