psli / todo
To-Do Functionality for Laravel Projects
Requires (Dev)
- jasonmccreary/laravel-test-assertions: ^1.1
- orchestra/testbench: ^5.0
- phpunit/phpunit: ^9.5
This package is not auto-updated.
Last update: 2025-03-22 11:34:21 UTC
README
This package has developed to extend laravel functionality with todo tasks
Getting Started
PHP Version: 7.4+
Laravel Version: 7.x
Composer
Installation
Run require command with composer:
composer require psli/todo
Publish migrations:
php artisan vendor:publish --provider="Psli\Todo\TodoPackageServiceProvider" --tag="migrations"
php artisan migrate
Use trait HasTasks
in your User model
Usage
There are 2 models related to each:
- Label: Labels help users to filter tasks. labels should be unique and system should not have a duplicate label.
- Task: Task contains Title, Description, and Status.
The relations are as following:
- User can have 1 + n task.
- Task can have 1 + n label.
After install you can use php artisan route:lists and find new routes added to your laravel.
I assume have a column name "token" in our User model and auth users with custom middleware in the package.
Test
composer test
License
Distributed under the MIT License. See LICENSE.md
for more information.
Contact
Pouya Salimi - @pouya - pouya@salimi.info
Project Link: https://github.com/pouyasalimi/laravel_todo