swapnilkharecodiant / todolist
You can create the to-do-list of your task.
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/swapnilkharecodiant/todolist
Requires
- php: ^7.3|^8.0
This package is auto-updated.
Last update: 2025-12-29 03:46:54 UTC
README
A laravel package that manages your todolist. This package is easily configurable and customizable. Supports Laravel 8.0 and 8+
Features
| Laravel Activity Logger Features |
|---|
| Daily to do list |
Requirements
Laravel Installation Instructions
- From your projects root folder in terminal run:
composer require swapnilkharecodiant/todolist
- Register the package
-
Laravel 5.5 and up Uses package auto discovery feature, no need to edit the
config/app.phpfile. -
Laravel 5.4 and below Register the package with laravel in
config/app.phpunderproviderswith the following:
'providers' => [ Codiant\Todolist\Providers\TodolistServiceProvider::class, ];
- Run the migration to add the table to record the activities to:
php artisan migrate
- Note: If you want to specify a different table or connection make sure you update your
.envfile with the needed configuration variables.
- Optionally publish the packages views, config file, assets, and language files by running the following from your projects root folder:
php artisan vendor:publish --tag=codiant\todolist\TodolistServiceProvider
Routes
ToDoList Routes
/task-create/task-store/task/{id}/edit/task-update/task-destroy
File Tree
├── .gitignore
├── README.md
├── composer.json
└── src
├── Database
│ └── Migrations
│ └── 2021_06_21_053144_create_task_table.php
├── Http
│ └── Controllers
│ | └── TodolistController.php
│ └── routes.php
├── Models
│ └── Task.php
├── Providers
│ └── TodolistServiceProvider.php
├── Resources
│ └── views
│ ├── app.blade.php
│ └── list.blade.php
### License
To Do List is licensed under the MIT license. Enjoy!