This is a basic Todo application with Create, Read, Update, and Delete (CRUD) functionality using Laravel.
Clone the repository:
git clone https://github.com/boytur/todolist-basic-crud.git
Change into the project directory:
cd todolist-basic-crud
Install dependencies:
composer install
npm install && npm run dev
Set up your environment variables:
.env.example
file to a new file named .env
..env
file.Generate application key:
php artisan key:generate
Run migrations:
php artisan migrate
Start the development server:
php artisan serve
Access the application in your browser:
http://localhost:8000
Start managing your Todo items with basic CRUD operations.