Groundwork
This commit is contained in:
@ -3,8 +3,31 @@
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use View;
|
||||
Use App\helpers;
|
||||
|
||||
|
||||
class PagesController extends Controller
|
||||
{
|
||||
//
|
||||
public function home()
|
||||
{
|
||||
return view('home');
|
||||
}
|
||||
public function domains(Request $domain_req)
|
||||
{
|
||||
|
||||
return view('domains');
|
||||
}
|
||||
public function newrecord(Request $newrec_req)
|
||||
{
|
||||
|
||||
return view('newrecord');
|
||||
}
|
||||
public function updaterecord(Request $updaterec_req)
|
||||
{
|
||||
|
||||
return view('updaterecord');
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user