jugendra/laravel-todo

Here you can create a todo list of your tasks. And you can close and delete tasks from the list

1.0.0 2024-09-11 07:23 UTC

This package is auto-updated.

Last update: 2024-09-11 12:25:01 UTC


README

This is a simple To-Do list application built using the Laravel framework.

Installation

  1. Clone the repository:
    git clone https://github.com/jkrajpootbdn94/create-todo-list-in-laravel
  2. Install dependencies:
    composer install
  3. Update .env file with the following:
    APP_NAME=YourAppName
    APP_ENV=local
    APP_KEY=base64:generated-key
    APP_DEBUG=true
    APP_URL=http://localhost
    
    DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=3306
    DB_DATABASE=your-database-name
    DB_USERNAME=your-database-username
    DB_PASSWORD=your-database-password
  4. Run migrations:
    php artisan migrate
  5. Start the development server:
    php artisan serve

Requirements

  • PHP >= 8.x
  • Composer
  • MySQL
  • Node.js & NPM (if applicable)

Usage

Once the server is running, visit http://localhost:8000 to start using the To-Do list.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.