thekavish / todolist
You can create the todo-list of your task.
v1.0.0
2019-01-27 13:47 UTC
Requires
- laravelcollective/html: ^5.5
This package is auto-updated.
Last update: 2024-10-28 07:24:59 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. 💥