readd the vacentral module

This commit is contained in:
Nabeel Shahzad
2017-12-05 21:40:10 -06:00
parent 281c72bcf6
commit 67ccc34655
14 changed files with 422 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
<?php
namespace Modules\Vacentral\Http\Controllers;
use App\Http\Controllers\AppBaseController;
use Illuminate\Http\Request;
class AdminController extends AppBaseController
{
/**
* Display a listing of the resource.
*/
public function index()
{
return view('vacentral::admin.index');
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
return view('vacentral::admin.create');
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request)
{
}
/**
* Show the specified resource.
*/
public function show()
{
return view('vacentral::admin.show');
}
/**
* Show the form for editing the specified resource.
*/
public function edit()
{
return view('vacentral::admin.edit');
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request)
{
}
/**
* Remove the specified resource from storage.
*/
public function destroy()
{
}
}