whylab/todolist

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

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 1

Type:composer-plugin

dev-master 2019-05-05 16:55 UTC

This package is auto-updated.

Last update: 2024-05-06 04:32:00 UTC


README

A simple Laravel Todo List Package.

Quickstart

To get started, you simply need to run:

$ composer require whylab/todolist

This will install the package.

Once TodoList is installed you need to register the service provider with the application. Open up app/config/app.php and find the providers key.

<?php

'providers' => [

    Whylab\Todolist\TodolistServiceProvider::class,

]

You have to run migrations Afterwards:

$ php artisan migrate

This will create necessary tables inside the database.

And you're good to Go.

Just point to /todo route and See it works.

Customize Package

Build our own TodoList package application where you can customize module by your self using laravel php artisan command.

Create your the configuration file using laravel artisan comman.

$ php artisan vendor:publish --provider="Whylab\Todolist\TodolistServiceProvider" --tag=config

Customize views and use multilanguage in todolist package. Using laravel artisan command you can create files where you can customize package.

$ php artisan vendor:publish --provider="Whylab\Todolist\TodolistServiceProvider" --tag=todolist