thekavish / todolist
You can create the todo-list of your task.
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/thekavish/todolist
Requires
- laravelcollective/html: ^5.5
This package is auto-updated.
Last update: 2025-09-28 09:09:28 UTC
README
Simple example package to add todo list feature to your existing Laravel application.
Prerequisites:
- Bootstrap
- jQuery
- FontAwesome
Add @include('todolist::js')
right after you call jQuery in script tags.
Example:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <link rel="stylesheet" href="app.css"> </head> <body> <div class="container"> <p>Welcome to my website...</p> </div> <script src="//code.jquery.com/jquery.js"></script> @include('todolist::js') <script src="app.js"></script> </body> </html>
Run php artisan vendor:publish --provider='Thekavish\Todolist\TodolistServiceProvider'
and modify published views as you see fit for your application.
More features coming soon. 💥