FleetCart/Modules/Admin/Ui/Facades/Form.php

20 lines
366 B
PHP
Raw Normal View History

2023-06-11 12:14:03 +00:00
<?php
namespace Modules\Admin\Ui\Facades;
use Illuminate\Support\Facades\Facade;
use Modules\Admin\Ui\Form as FormBuilder;
class Form extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return FormBuilder::class;
}
}