-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
33194f1
commit 9766b82
Showing
18 changed files
with
228 additions
and
201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
<?php | ||
|
||
namespace SleepingOwl\Admin; | ||
namespace SleepingOwl\Admin\Facades; | ||
|
||
use Illuminate\Support\Facades\Facade; | ||
|
||
/** | ||
* @method static \SleepingOwl\Admin\Form\FormDefault form() | ||
* @method static \SleepingOwl\Admin\Form\FormTabbed tabbed() | ||
* @method static \SleepingOwl\Admin\Form\FormPanel panel() | ||
*/ | ||
class Form extends AliasBinder | ||
class Form extends Facade | ||
{ | ||
/** | ||
* Form class aliases. | ||
* @var string[] | ||
*/ | ||
protected static $aliases = []; | ||
public static function getFacadeAccessor() | ||
{ | ||
return 'sleeping_owl.form'; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 8 additions & 6 deletions
14
src/TableColumnFilter.php → src/Facades/TableColumnFilter.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,22 @@ | ||
<?php | ||
|
||
namespace SleepingOwl\Admin; | ||
namespace SleepingOwl\Admin\Facades; | ||
|
||
use SleepingOwl\Admin\AliasBinder; | ||
use Illuminate\Support\Facades\Facade; | ||
|
||
/** | ||
* @method static \SleepingOwl\Admin\Display\Column\Filter\Text text() | ||
* @method static \SleepingOwl\Admin\Display\Column\Filter\Date date() | ||
* @method static \SleepingOwl\Admin\Display\Column\Filter\Select select() | ||
* @method static \SleepingOwl\Admin\Display\Column\Filter\Range range() | ||
*/ | ||
class TableColumnFilter extends AliasBinder | ||
class TableColumnFilter extends Facade | ||
{ | ||
/** | ||
* Column filter class aliases. | ||
* @var string[] | ||
* @return string | ||
*/ | ||
protected static $aliases = []; | ||
protected static function getFacadeAccessor() | ||
{ | ||
return 'sleeping_owl.column_filter'; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.