Added Tools Route

This commit is contained in:
Olu Amey
2021-09-19 01:48:23 -04:00
parent 32eb3ab418
commit a6e8a48d2e
8 changed files with 109 additions and 86 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
namespace App\Controllers;
class Tools extends BaseController
{
public function index()
{
return view('tools/index');
}
}