選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
<?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;
|
|
}
|
|
}
|
|
|