Skip to content

Commit 5920b4d

Browse files
author
Kamil Tunkiewicz
committed
Merge pull request #120 from anhskohbo/patch-1
correct facade
2 parents 822ab92 + b2d3182 commit 5920b4d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Composer will download the package. After the package is downloaded, open `app/c
3535

3636
'aliases' => array(
3737
...
38-
'Datatables' => 'Bllim\Datatables\Datatables',
38+
'Datatables' => 'Bllim\Datatables\Facade\Datatables',
3939
),
4040

4141
Finally you need to publish a configuration file by running the following Artisan command.
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
<?php namespace Bllim\Datatables\Facades;
1+
<?php namespace Bllim\Datatables\Facade;
22

33
use Illuminate\Support\Facades\Facade;
44

5-
class Profiler extends Facade {
5+
class Datatables extends Facade {
66

77
/**
88
* Get the registered name of the component.
99
*
1010
* @return string
1111
*/
12-
protected static function getFacadeAccessor() { return 'Datatables'; }
12+
protected static function getFacadeAccessor() { return 'datatables'; }
1313

14-
}
14+
}

0 commit comments

Comments
 (0)