new table form html, css

This commit is contained in:
2018-07-21 18:06:37 +02:00
parent ba721592cd
commit 3242ae9cbe
26 changed files with 749 additions and 148 deletions
+15
View File
@@ -0,0 +1,15 @@
<?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;
}
}