Start porting over the admin area to react

This commit is contained in:
Matthew Penner 2020-08-20 18:45:24 -06:00
parent e7aeeace26
commit 1dff1f1810
5 changed files with 250 additions and 41 deletions

View file

@ -30,7 +30,7 @@ class BaseController extends Controller
*/
public function index(): View
{
// return view('admin.index', ['version' => $this->version]);
return view('templates/base.core');
return view('admin.index', ['version' => $this->version]);
// return view('templates/base.core');
}
}