From 18dfcc4c0d411cd81412f1650a3f0f7352bc895b Mon Sep 17 00:00:00 2001 From: Salim Djerbouh Date: Tue, 27 Jun 2017 01:19:50 +0100 Subject: [PATCH] Update Laravel installation instructions Point the config file to add the service provider class and alias in the correct directory --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 572164b..1c07455 100644 --- a/README.md +++ b/README.md @@ -21,13 +21,13 @@ composer require jenssegers/agent Laravel (optional) ------------------ -Add the service provider in `app/config/app.php`: +Add the service provider in `config/app.php`: ```php Jenssegers\Agent\AgentServiceProvider::class, ``` -And add the Agent alias to `app/config/app.php`: +And add the Agent alias to `config/app.php`: ```php 'Agent' => Jenssegers\Agent\Facades\Agent::class,