abedimostafa / to_do
This package adds Todo ability to the main laravel project
Package info
github.com/AbediMostafa/laravel-todo
Language:JavaScript
pkg:composer/abedimostafa/to_do
dev-master
2023-09-29 19:51 UTC
This package is auto-updated.
Last update: 2026-03-29 00:58:14 UTC
README
This package adds Todo ability to the main laravel project
Installation
You can install the package via composer:
composer require abedimostafa/to_do
You can publish and run the migrations with:
php artisan vendor:publish --tag="todo-app" --force
php artisan migrate
- For getting access to the authenticated user and relation methods add ExtendedUser trait to the User model :
use AbediMostafa\ToDo\http\Models\Traits\ExtendedUser;
class User extends Authenticatable
{
use Notifiable,ExtendedUser;
considerations
- Be sure to use ExtendedUser with correct namespace
- Set up the email configuration in the .env file before using the package
Usage
It's all set, hit /login url and enjoy the package
License
The MIT License (MIT). Please see License File for more information.