Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Composer will download the package. After the package is downloaded, open `app/c

'aliases' => array(
...
'Datatables' => 'Bllim\Datatables\Datatables',
'Datatables' => 'Bllim\Datatables\Facade\Datatables',
),

Finally you need to publish a configuration file by running the following Artisan command.
Expand Down
8 changes: 4 additions & 4 deletions src/Bllim/Datatables/Facade/Datatables.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?php namespace Bllim\Datatables\Facades;
<?php namespace Bllim\Datatables\Facade;

use Illuminate\Support\Facades\Facade;

class Profiler extends Facade {
class Datatables extends Facade {

/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor() { return 'Datatables'; }
protected static function getFacadeAccessor() { return 'datatables'; }

}
}