You can create the to-do-list of your task.

dev-master 2021-06-22 07:14 UTC

This package is auto-updated.

Last update: 2025-05-29 01:55:58 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

  1. From your projects root folder in terminal run:
    composer require swapnilkharecodiant/todolist
  1. Register the package
  • Laravel 5.5 and up Uses package auto discovery feature, no need to edit the config/app.php file.

  • Laravel 5.4 and below Register the package with laravel in config/app.php under providers with the following:

    'providers' => [
        Codiant\Todolist\Providers\TodolistServiceProvider::class,
    ];
  1. 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 .env file with the needed configuration variables.
  1. 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!