https://github.com/abdulbasit-dev/laravel-taskwise
Laravel Task Management Api
https://github.com/abdulbasit-dev/laravel-taskwise
laravel php
Last synced: 7 months ago
JSON representation
Laravel Task Management Api
- Host: GitHub
- URL: https://github.com/abdulbasit-dev/laravel-taskwise
- Owner: abdulbasit-dev
- Created: 2023-08-13T07:56:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-07T14:10:50.000Z (about 2 years ago)
- Last Synced: 2025-03-30T21:42:06.663Z (11 months ago)
- Topics: laravel, php
- Language: PHP
- Homepage:
- Size: 190 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TaskWise
Welcome to TaskWise! This project is designed to simplify task management and streamline team collaboration. The application provides a robust task tracking system with features like due date monitoring, role-based status transitions, and notifications.
## Getting Started
To start using TaskWise, follow these steps:
1. Clone the repository to your local machine:
```shell
git clone https://github.com/abdulbasit-dev/laravel-taskwise.git
cd laravel-taskwise
```
2. Install project dependencies using Composer:
```shell
composer install
```
3. Copy the `.env.example` file and configure your environment variables:
```shell
cp .env.example .env
php artisan key:generate
```
4. Create and seed the database with fake data using the following command (optional):
```shell
php artisan migrate --seed
```
5. Start the Laravel development server:
```shell
php artisan serve
```
6. Base Url For the api will be:
```
http://localhost:8000/api/v1
```
7. In the root directory find this replated postman file:
- [Laravel Task Management.postman_collection.json] the collection tha contain requests.
- [TaskWise Local.postman_environment.json] environment variables
**Please** import both of them and with you will be good to go :)
## Dependencies
TaskWise utilizes the following dependencies:
- [Laravel Framework](https://laravel.com) Laravel Framework
- [laravel/sanctum](https://laravel.com/docs/10.x/sanctum): A lightweight package for API authentication using Laravel's built-in features.
- [maatwebsite/excel](https://docs.laravel-excel.com/3.1/getting-started/): A package for importing and exporting Excel and CSV files in Laravel applications.
- [spatie/laravel-permission](https://spatie.be/docs/laravel-permission/v5/introduction): A package for managing role-based permissions and authorization in Laravel applications.
Make sure to install and configure these dependencies according to the provided links and documentation.
## Test Email Sending with MailTrap
We have already set up email sending in this project, and we're using MailTrap, a testing environment for catching and inspecting emails. You can check the emails we send from the application without signing up for MailTrap. We've provided the MailTrap credentials, so follow the steps below:
1. **Visit MailTrap Inbox:** Open [MailTrap Inbox](https://mailtrap.io/inboxes/1432104/messages/3650415878) to view the emails sent from the application. This link will take you directly to the inbox where you can see the emails.
2. **Login to MailTrap:** Use the following MailTrap login credentials to access the inbox:
- Email: basit99dev@gmail.com
- Password: 12345678
3. **Check Received Emails:** In the MailTrap inbox, you'll find the emails that have been sent from the application. You can inspect the content, headers, and attachments of these emails.
4. **Queue Worker (Important):** To ensure that emails are sent correctly and asynchronously, Open your `.env` file and set the `QUEUE_CONNECTION` to `database`, and then run the following command in your terminal:
```shell
php artisan queue:work
```
This command starts the Laravel queue worker, which processes jobs in the background. It's essential for sending emails and performing other queued tasks.