Skip to content

Commit 3be45db

Browse files
committed
Laravel 5 updates
1 parent 3537c6c commit 3be45db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Bllim/Datatables/DatatablesServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ public function package($package, $namespace = null, $path = null)
5757

5858
// Is it possible to register the config?
5959
if (method_exists($this->app['config'], 'package')) {
60-
$this->app['config']->package($package, $path.'/config', $namespace);
60+
$this->app['config']->package($package, $path.'../../config', $namespace);
6161
} else {
6262
// Load the config for now..
63-
$config = $this->app['files']->getRequire($path .'/config/config.php');
63+
$config = $this->app['files']->getRequire($path .'../../config/config.php');
6464
foreach($config as $key => $value){
6565
$this->app['config']->set($namespace.'::'.$key, $value);
6666
}

0 commit comments

Comments
 (0)