Browse code

box and lines

rcraig12 authored on 11/11/2018 23:08:51
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,12 @@
1
+<?php
2
+
3
+namespace App\Http\Controllers;
4
+
5
+use Illuminate\Http\Request;
6
+
7
+class BuilderEditorController extends Controller
8
+{
9
+    public function index(){
10
+        return view('editor.index');
11
+    }
12
+}