Tasktify is a Laravel-based task management web application designed to help students increase productivity. With features like progress tracking, deadline reminders, and daily motivational quotes, Tasktify makes it easier to manage assignments, projects, and study schedules—keeping students organized and focused.
✅ Create and manage tasks easily
✅ Task categorization (Pending, In Progress, Completed)
✅ Interactive task progress charts
✅ Deadline setting and automatic reminders
✅ Daily motivational quotes
✅ Productivity reports and analytics
Clone my repo
git clone https://github.com/dayeeen/tasktify.git
cd tasktifyInstall dependencies
composer install
npm install
npm run devConfigure the .env file
cp .env.example .env
php artisan key:generateSetup the database
- Create a new database in MySQL
- Update your .env with database credentials
php artisan migrate
php artisan db:seed (if seeder available)Run it on your local server
php artisan serve