This package adds Todo ability to the main laravel project

Installs: 12

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:JavaScript

dev-master 2023-09-29 19:51 UTC

This package is auto-updated.

Last update: 2025-07-29 02:17:48 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.