diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php
index e48e2e3b..c5c83e5c 100644
--- a/app/Http/Controllers/Auth/RegisterController.php
+++ b/app/Http/Controllers/Auth/RegisterController.php
@@ -23,7 +23,7 @@ class RegisterController extends Controller
use RegistersUsers;
/**
- * Where to redirect users after login / registration.
+ * Where to redirect users after registration.
*
* @var string
*/
diff --git a/composer.json b/composer.json
index 75a7ebf3..1b7c2e0a 100644
--- a/composer.json
+++ b/composer.json
@@ -39,7 +39,8 @@
]
},
"config": {
- "preferred-install": "dist"
+ "preferred-install": "dist",
+ "sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
diff --git a/config/database.php b/config/database.php
index 4562ebcc..54326db9 100644
--- a/config/database.php
+++ b/config/database.php
@@ -54,7 +54,7 @@ return [
'mysql' => [
'driver' => 'mysql',
- 'host' => env('DB_HOST', 'localhost'),
+ 'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
@@ -68,7 +68,7 @@ return [
'pgsql' => [
'driver' => 'pgsql',
- 'host' => env('DB_HOST', 'localhost'),
+ 'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '5432'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
@@ -110,7 +110,7 @@ return [
'client' => 'predis',
'default' => [
- 'host' => env('REDIS_HOST', 'localhost'),
+ 'host' => env('REDIS_HOST', '127.0.0.1'),
'password' => env('REDIS_PASSWORD', null),
'port' => env('REDIS_PORT', 6379),
'database' => 0,
diff --git a/config/mail.php b/config/mail.php
index 10167a05..8d327881 100644
--- a/config/mail.php
+++ b/config/mail.php
@@ -56,8 +56,8 @@ return [
*/
'from' => [
- 'address' => 'hello@example.com',
- 'name' => 'Example',
+ 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
+ 'name' => env('MAIL_FROM_NAME', 'Example'),
],
/*
diff --git a/package.json b/package.json
index ceec3d0f..392cd322 100644
--- a/package.json
+++ b/package.json
@@ -9,7 +9,7 @@
"bootstrap-sass": "^3.3.7",
"gulp": "^3.9.1",
"jquery": "^3.1.0",
- "laravel-elixir": "^6.0.0-11",
+ "laravel-elixir": "^6.0.0-14",
"laravel-elixir-vue-2": "^0.2.0",
"laravel-elixir-webpack-official": "^1.0.2",
"lodash": "^4.16.2",
diff --git a/readme.md b/readme.md
index 7f8816d6..70f23e0b 100644
--- a/readme.md
+++ b/readme.md
@@ -1,18 +1,31 @@
-# Laravel PHP Framework
+

-[](https://travis-ci.org/laravel/framework)
-[](https://packagist.org/packages/laravel/framework)
-[](https://packagist.org/packages/laravel/framework)
-[](https://packagist.org/packages/laravel/framework)
-[](https://packagist.org/packages/laravel/framework)
+
+
+
+
+
+
-Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable, creative experience to be truly fulfilling. Laravel attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as authentication, routing, sessions, queueing, and caching.
+## About Laravel
-Laravel is accessible, yet powerful, providing tools needed for large, robust applications. A superb inversion of control container, expressive migration system, and tightly integrated unit testing support give you the tools you need to build any application with which you are tasked.
+Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable, creative experience to be truly fulfilling. Laravel attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as:
-## Official Documentation
+- [Simple, fast routing engine](https://laravel.com/docs/routing).
+- [Powerful dependency injection container](https://laravel.com/docs/container).
+- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
+- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
+- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
+- [Robust background job processing](https://laravel.com/docs/queues).
+- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).
-Documentation for the framework can be found on the [Laravel website](http://laravel.com/docs).
+Laravel is accessible, yet powerful, providing tools needed for large, robust applications. A superb combination of simplicity, elegance, and innovation give you tools you need to build any application with which you are tasked.
+
+## Learning Laravel
+
+Laravel has the most extensive and thorough documentation and video tutorial library of any modern web application framework. The [Laravel documentation](https://laravel.com/docs) is thorough, complete, and makes it a breeze to get started learning the framework.
+
+If you're not in the mood to read, [Laracasts](https://laracasts.com) contains over 900 video tutorials on a range of topics including Laravel, modern PHP, unit testing, JavaScript, and more. Boost the skill level of yourself and your entire team by digging into our comprehensive video library.
## Contributing
diff --git a/resources/assets/js/components/Example.vue b/resources/assets/js/components/Example.vue
index 86a0b70f..601e61cf 100644
--- a/resources/assets/js/components/Example.vue
+++ b/resources/assets/js/components/Example.vue
@@ -17,7 +17,7 @@
diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php
index 73b49d08..9608bc25 100644
--- a/resources/lang/en/validation.php
+++ b/resources/lang/en/validation.php
@@ -16,11 +16,13 @@ return [
'accepted' => 'The :attribute must be accepted.',
'active_url' => 'The :attribute is not a valid URL.',
'after' => 'The :attribute must be a date after :date.',
+ 'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
'alpha' => 'The :attribute may only contain letters.',
'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.',
'alpha_num' => 'The :attribute may only contain letters and numbers.',
'array' => 'The :attribute must be an array.',
'before' => 'The :attribute must be a date before :date.',
+ 'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
'between' => [
'numeric' => 'The :attribute must be between :min and :max.',
'file' => 'The :attribute must be between :min and :max kilobytes.',