This is a simple app using laravel 8.0 with API and jQuery
Please check the official laravel installation guide for server requirements before you start. Official Documentation
Assuming you've already installed on your machine: PHP (>= 7.3.0), Composer, and local web server
Clone the repository
git clone https://github.com/ariestaazalia/Simple-To-Do-App.git
Switch to the folder
cd Simple-To-Do-App
Install all the dependencies using composer
composer install
Copy the env example file and configure
cp .env.example .env
Generate key
php artisan key:generate
Run the database migration (set the database connection in .env first)
php artisan migrate --seed
Start local development server
php artisan serve
You can access the app in http://localhost:8000 (Make sure you run your web server, ex: XAMPP, MAMP)
git clone https://github.com/ariestaazalia/Simple-To-Do-App.git
cd Simple-To-Do-App
composer install
cp .env.example .env
php artisan key:generate
php artisan migrate --seed
php artisan serve
This Application is using API for backend, to run a test: