datatable.directory codebase
https://datatable.directory/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
284 B
16 lines
284 B
6 years ago
|
<?php
|
||
|
|
||
|
namespace App\Facades;
|
||
|
|
||
|
use Illuminate\Support\Facades\Facade;
|
||
|
use App\View\WidgetFactory;
|
||
|
|
||
|
/** Facade for easy widget rendering in View */
|
||
|
class WidgetFacade extends Facade
|
||
|
{
|
||
|
protected static function getFacadeAccessor()
|
||
|
{
|
||
|
return WidgetFactory::class;
|
||
|
}
|
||
|
}
|