From 7ac23e6791367263685f0a3bb849e6f545a439e6 Mon Sep 17 00:00:00 2001 From: Supan Adit Pratama Date: Sun, 28 Jun 2020 00:43:02 +0700 Subject: [PATCH] Update Todo Item CRUD --- README.md | 1 + app/Todo.php | 0 app/TodoItem.php | 0 .../2020_06_23_170808_create_todos_table.php | 0 ...0_06_23_170816_create_todo_items_table.php | 0 resources/views/home.blade.php | 167 ++++++++++++++++-- 6 files changed, 155 insertions(+), 13 deletions(-) mode change 100644 => 100755 app/Todo.php mode change 100644 => 100755 app/TodoItem.php mode change 100644 => 100755 database/migrations/2020_06_23_170808_create_todos_table.php mode change 100644 => 100755 database/migrations/2020_06_23_170816_create_todo_items_table.php diff --git a/README.md b/README.md index 7d1b93a..06682b2 100755 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ Simple Todo Application ## Quick Start - `composer install` +- `php artisan key:generate` - create `.env` file - `php artisan key:generate` - `php artisan migrate` diff --git a/app/Todo.php b/app/Todo.php old mode 100644 new mode 100755 diff --git a/app/TodoItem.php b/app/TodoItem.php old mode 100644 new mode 100755 diff --git a/database/migrations/2020_06_23_170808_create_todos_table.php b/database/migrations/2020_06_23_170808_create_todos_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2020_06_23_170816_create_todo_items_table.php b/database/migrations/2020_06_23_170816_create_todo_items_table.php old mode 100644 new mode 100755 diff --git a/resources/views/home.blade.php b/resources/views/home.blade.php index 8fa1716..70e589b 100755 --- a/resources/views/home.blade.php +++ b/resources/views/home.blade.php @@ -144,11 +144,46 @@ + + @endsection @section('js') @endsection