for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Bantenprov\VueWorkflow\Http\Controllers;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use Bantenprov\VueWorkflow\Facades\VueWorkflow;
use Bantenprov\VueWorkflow\Models\VueWorkflowModel;
/**
* The VueWorkflowController class.
*
* @package Bantenprov\VueWorkflow
* @author bantenprov <[email protected]>
*/
class VueWorkflowController extends Controller
{
public function demo()
return VueWorkflow::welcome();
}