From ed3b8fc51be24bf723b4b82020806dba572e853d Mon Sep 17 00:00:00 2001 From: Zig Date: Wed, 15 Dec 2021 08:51:25 -0600 Subject: [PATCH] Update README.md Update laravel.com links. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 36b96d1..2679cd1 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ and deleting files. 1) Follow the **Installation** instructions below. - Getting errors? Make sure you have a database set up (https://laravel.com/docs/7.x/database). + Getting errors? Make sure you have a database set up (https://laravel.com/docs/database). 2) In a view (welcome.blade.php, for example), add: ```html @@ -54,7 +54,7 @@ That's it. If you have any issues or question, please feel free to open an issu ## Installation -NOTE: If you haven't set up a database yet for your app, please do that first as per Laravel docs - http://laravel.com/docs/5.0/database. +NOTE: If you haven't set up a database yet for your app, please do that first as per Laravel docs - http://laravel.com/docs/database. Via composer ``` @@ -77,11 +77,11 @@ followed by ## Configuration (.env) -Laradrop uses Laravel's Filesystem mechanism (https://laravel.com/docs/5.2/filesystem) and by default will store your +Laradrop uses Laravel's Filesystem mechanism (https://laravel.com/docs/filesystem) and by default will store your files in the `storage/app` directory. If you would like to modify this behavior, along with other default settings, you can set your `.env` file variables: ```php -# s3, local, or Rackspace. See 'Other Driver Prerequisites' at https://laravel.com/docs/5.2/filesystem. Defaults to 'local' +# s3, local, or Rackspace. See 'Other Driver Prerequisites' at https://laravel.com/docs/filesystem. Defaults to 'local' LARADROP_DISK=local # If your files need to be web accessible, set this param. S3, for example, would be 'https://s3.amazonaws.com/my-bucket'. Defaults to the web root (public).