23 lines
420 B
PHP
23 lines
420 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Controllers\Admin\Forms;
|
||
|
|
|
||
|
|
use App\Http\Controllers\Controller;
|
||
|
|
use Illuminate\View\View;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Controller for showing the form creation UI.
|
||
|
|
*/
|
||
|
|
class FormCreateController extends Controller
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Show the form for creating a new form.
|
||
|
|
*
|
||
|
|
* @return \Illuminate\View\View
|
||
|
|
*/
|
||
|
|
public function __invoke(): View
|
||
|
|
{
|
||
|
|
return view('admin.forms.editor');
|
||
|
|
}
|
||
|
|
}
|