A modern and minimal task manager application built with Laravel 11, PHP 8.2+, and Blade templating.
Manage tasks, assign teammates, track daily schedules, and visualize weekly workload — all in a clean Laravel stack.
- PHP
^8.2 - Composer
- Node.js & npm (for frontend assets)
- MySQL
- Laravel 11\
- Blade (UI)
# Clone the repo
git clone https://github.com/tvarga94/task-management-system.git
cd your-project
# Install PHP dependencies
composer install
# Copy .env and generate key
cp .env.example .env
php artisan key:generate
# Configure your database in .env, then run:
php artisan migrate
# Install frontend assets (Blade + Tailwind via Vite)
npm install && npm run dev
# Start local dev server
php artisan serve