This is a simple todolist application built with Laravel, Livewire, and TailwindCSS.
- Clone the repository:
git clone https://github.com/DocCreeps/Todolist.git
- Install dependencies:
composer install
npm install && npm run dev
- Copy .env.example file to .env:
cp .env.example .env
- Generate application key:
php artisan key:genrate
- Use the database information in your .env file to create a database for the application.
DB_DATABASE=your_database_name
DB_USERNAME=your_database_username
DB_PASSWORD=your_database_password
- Migrate the database:
php artisan migrate
- Run the application:
php artisan serve
- Navigate to http://localhost:8000 in your web browser.
- Create, edit, and delete tasks
- Mark tasks as complete
- view completed tasks
- view incomplete tasks
- view all tasks
- view tasks by date created
- view tasks by date updated
- view tasks by date completed