From c088af36a956f35218c3d85b997630773a963abf Mon Sep 17 00:00:00 2001 From: Hamzah Date: Sat, 23 Apr 2016 10:26:46 +0700 Subject: [PATCH 1/9] Fix add task action --- resources/views/tasks.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/tasks.blade.php b/resources/views/tasks.blade.php index 4f4f428d..04b14290 100644 --- a/resources/views/tasks.blade.php +++ b/resources/views/tasks.blade.php @@ -13,7 +13,7 @@ @include('common.errors') -
+ {{ csrf_field() }} From de04c427ba2945f726f133b641149e03c3367688 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=85=AB=E5=AE=9D=E7=B2=A5?= Date: Fri, 24 Jun 2016 16:50:34 +0800 Subject: [PATCH 2/9] action of delete form {{ url('task/'.$task->id) }} --- resources/views/tasks.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/tasks.blade.php b/resources/views/tasks.blade.php index 04b14290..aa5cb6cc 100644 --- a/resources/views/tasks.blade.php +++ b/resources/views/tasks.blade.php @@ -57,7 +57,7 @@ - + {{ csrf_field() }} {{ method_field('DELETE') }} From b49f5202a510d84d5d0854bc05c6392cbcc82e27 Mon Sep 17 00:00:00 2001 From: eddymens Date: Wed, 10 Aug 2016 10:09:29 +0000 Subject: [PATCH 3/9] add more info to readme --- readme.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index ca7a1ec6..854d9d07 100644 --- a/readme.md +++ b/readme.md @@ -1,3 +1,16 @@ # Laravel Quickstart - Basic -http://laravel.com/docs/quickstart + # Installation : + ``git clone https://github.com/laravel/quickstart-basic quickstart`` + + ``cd quickstart`` + + ``composer install`` + + ``php artisan key:generate`` + + ``php artisan migrate`` + + ``php artisan serve`` + + [Complete tutorial](http://laravel.com/docs/quickstart) From bb0fce21b3362869806adc703b68674c5f4e92d0 Mon Sep 17 00:00:00 2001 From: eddymens Date: Wed, 10 Aug 2016 10:11:19 +0000 Subject: [PATCH 4/9] remove default app key --- .env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env b/.env index 5b4d3ec5..1ff832e4 100644 --- a/.env +++ b/.env @@ -1,6 +1,6 @@ APP_ENV=local APP_DEBUG=true -APP_KEY=b809vCwvtawRbsG0BmP1tWgnlXQypSKf +APP_KEY= APP_URL=http://localhost DB_HOST=127.0.0.1 From cf09dfbdf80a17d67a62a9cc0e664b017258643e Mon Sep 17 00:00:00 2001 From: eddymens Date: Wed, 10 Aug 2016 20:39:24 +0000 Subject: [PATCH 5/9] restore key, keeping it simple --- .env | 2 +- readme.md | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.env b/.env index 1ff832e4..5b4d3ec5 100644 --- a/.env +++ b/.env @@ -1,6 +1,6 @@ APP_ENV=local APP_DEBUG=true -APP_KEY= +APP_KEY=b809vCwvtawRbsG0BmP1tWgnlXQypSKf APP_URL=http://localhost DB_HOST=127.0.0.1 diff --git a/readme.md b/readme.md index 854d9d07..748e5fd9 100644 --- a/readme.md +++ b/readme.md @@ -7,8 +7,6 @@ ``composer install`` - ``php artisan key:generate`` - ``php artisan migrate`` ``php artisan serve`` From fc0f7ace95d5b5fd37da88e493ec25296ff77858 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 10 Aug 2016 07:56:34 -0500 Subject: [PATCH 6/9] Update readme.md --- readme.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/readme.md b/readme.md index 748e5fd9..e2dd46f6 100644 --- a/readme.md +++ b/readme.md @@ -1,14 +1,15 @@ # Laravel Quickstart - Basic - # Installation : - ``git clone https://github.com/laravel/quickstart-basic quickstart`` - - ``cd quickstart`` - - ``composer install`` +## Quck Installation + + git clone https://github.com/laravel/quickstart-basic quickstart - ``php artisan migrate`` + cd quickstart - ``php artisan serve`` + composer install + + php artisan migrate` + + php artisan serve - [Complete tutorial](http://laravel.com/docs/quickstart) +[Complete Tutorial](http://laravel.com/docs/quickstart) From 85ddf3b2c1a87cc8c4fc8791c1ac80b7ac4392a9 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 10 Aug 2016 07:57:11 -0500 Subject: [PATCH 7/9] Update readme.md --- readme.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/readme.md b/readme.md index e2dd46f6..1653eec1 100644 --- a/readme.md +++ b/readme.md @@ -2,14 +2,14 @@ ## Quck Installation - git clone https://github.com/laravel/quickstart-basic quickstart - - cd quickstart - - composer install - - php artisan migrate` - - php artisan serve + git clone https://github.com/laravel/quickstart-basic quickstart + + cd quickstart + + composer install + + php artisan migrate + + php artisan serve [Complete Tutorial](http://laravel.com/docs/quickstart) From 9c7cec81a8abd663e962dcbc30488f401bcba645 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jergu=C5=A1=20Lejko?= Date: Fri, 9 Dec 2016 02:02:57 +0000 Subject: [PATCH 8/9] Fix broken link in readme --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 1653eec1..616f09cf 100644 --- a/readme.md +++ b/readme.md @@ -12,4 +12,4 @@ php artisan serve -[Complete Tutorial](http://laravel.com/docs/quickstart) +[Complete Tutorial](https://laravel.com/docs/5.2/quickstart) From 9dd1b5c753b4033ba21a391a5d3e2791f0c38bd7 Mon Sep 17 00:00:00 2001 From: hms5232 <43672033+hms5232@users.noreply.github.com> Date: Thu, 3 Jan 2019 11:54:12 +0800 Subject: [PATCH 9/9] Fix spelling error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 我猜是打字打太快漏打了i Fix spelling error : Quck -> Quick --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 616f09cf..65e8b628 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,6 @@ # Laravel Quickstart - Basic -## Quck Installation +## Quick Installation git clone https://github.com/laravel/quickstart-basic quickstart