diff --git a/.env.example b/.env.example index a19068d7..4eb08458 100644 --- a/.env.example +++ b/.env.example @@ -1,5 +1,11 @@ APP_ENV=local APP_DEBUG=true APP_KEY=SomeRandomString + +DB_HOST=localhost +DB_DATABASE=homestead DB_USERNAME=homestead -DB_PASSWORD=homestead +DB_PASSWORD=secret + +CACHE_DRIVER=file +SESSION_DRIVER=file diff --git a/resources/lang/en/pagination.php b/resources/lang/en/pagination.php index 88e22db6..13b4dcb3 100644 --- a/resources/lang/en/pagination.php +++ b/resources/lang/en/pagination.php @@ -14,7 +14,6 @@ return [ */ 'previous' => '« Previous', - 'next' => 'Next »', ]; diff --git a/resources/lang/en/passwords.php b/resources/lang/en/passwords.php index 2e966d00..188a3587 100644 --- a/resources/lang/en/passwords.php +++ b/resources/lang/en/passwords.php @@ -14,13 +14,9 @@ return [ */ "password" => "Passwords must be at least six characters and match the confirmation.", - "user" => "We can't find a user with that e-mail address.", - "token" => "This password reset token is invalid.", - "sent" => "Password reset link sent!", - "reset" => "Password has been reset!", ];