Initial code of commit
This commit is contained in:
203
code/app/Http/Controllers/Admin/SlaController.php
Normal file
203
code/app/Http/Controllers/Admin/SlaController.php
Normal file
@@ -0,0 +1,203 @@
|
||||
<?php namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Requests;
|
||||
use App\Http\Controllers\Controller;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
/* include Sla_plan Model */
|
||||
use App\Model\Manage\Sla_plan;
|
||||
|
||||
/* Include SlaRequest */
|
||||
use App\Http\Requests\SlaRequest;
|
||||
|
||||
/* Include SlaUpdate */
|
||||
use App\Http\Requests\SlaUpdate;
|
||||
|
||||
class SlaController extends Controller {
|
||||
|
||||
/* constructor for authentication */
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
$this->middleware('roles');
|
||||
}
|
||||
|
||||
/**
|
||||
* Display a listing of the resource.
|
||||
*
|
||||
* @return Response
|
||||
*/
|
||||
public function index(Sla_plan $sla)
|
||||
{
|
||||
try
|
||||
{
|
||||
/* Declare a Variable $slas to store all Values From Sla_plan Table */
|
||||
$slas = $sla->get();
|
||||
|
||||
/* Listing the values From Sla_plan Table */
|
||||
return view('themes.default1.admin.manage.sla.index',compact('slas'));
|
||||
}
|
||||
catch(Exception $e)
|
||||
{
|
||||
return view('404');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the form for creating a new resource.
|
||||
*
|
||||
* @return Response
|
||||
*/
|
||||
public function create()
|
||||
{
|
||||
try
|
||||
{
|
||||
/* Direct to Create Page */
|
||||
return view('themes.default1.admin.manage.sla.create');
|
||||
}
|
||||
catch(Exception $e)
|
||||
{
|
||||
return view('404');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Store a newly created resource in storage.
|
||||
*
|
||||
* @return Response
|
||||
*/
|
||||
public function store(Sla_plan $sla, SlaRequest $request)
|
||||
{
|
||||
try
|
||||
{
|
||||
/* Fill the request values to Sla_plan Table */
|
||||
/* Check whether function success or not */
|
||||
|
||||
if($sla->fill($request->input())->save()==true)
|
||||
|
||||
{
|
||||
/* redirect to Index page with Success Message */
|
||||
return redirect('sla')->with('success','SLA Plan Created Successfully');
|
||||
}
|
||||
else
|
||||
{
|
||||
/* redirect to Index page with Fails Message */
|
||||
return redirect('sla')->with('fails','SLA Plan can not Create');
|
||||
}
|
||||
}
|
||||
catch(Exception $e)
|
||||
{
|
||||
/* redirect to Index page with Fails Message */
|
||||
return redirect('sla')->with('fails','SLA Plan can not Create');
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Display the specified resource.
|
||||
*
|
||||
* @param int $id
|
||||
* @return Response
|
||||
*/
|
||||
public function show($id)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the form for editing the specified resource.
|
||||
*
|
||||
* @param int $id
|
||||
* @return Response
|
||||
*/
|
||||
public function edit($id, Sla_plan $sla)
|
||||
{
|
||||
try
|
||||
{
|
||||
/* Direct to edit page along values of perticular field using Id */
|
||||
$slas = $sla->whereId($id)->first();
|
||||
$slas->get();
|
||||
return view('themes.default1.admin.manage.sla.edit',compact('slas'));
|
||||
}
|
||||
catch(Exception $e)
|
||||
{
|
||||
return view('404');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Update the specified resource in storage.
|
||||
*
|
||||
* @param int $id
|
||||
* @return Response
|
||||
*/
|
||||
public function update($id, Sla_plan $sla, SlaUpdate $request)
|
||||
{
|
||||
try
|
||||
{
|
||||
/* Fill values to selected field using Id except Check box */
|
||||
$slas = $sla->whereId($id)->first();
|
||||
$slas->fill($request->except('transient','ticket_overdue'))->save();
|
||||
|
||||
/* Update transient checkox field */
|
||||
$slas->transient=$request->input('transient');
|
||||
|
||||
/* Update ticket_overdue checkox field */
|
||||
$slas->ticket_overdue=$request->input('ticket_overdue');
|
||||
|
||||
/* Check whether function success or not */
|
||||
|
||||
if($slas->save()==true)
|
||||
{
|
||||
/* redirect to Index page with Success Message */
|
||||
return redirect('sla')->with('success','SLA Plan Updated Successfully');
|
||||
}
|
||||
else
|
||||
{
|
||||
/* redirect to Index page with Fails Message */
|
||||
return redirect('sla')->with('fails','SLA Plan can not Update');
|
||||
}
|
||||
}
|
||||
catch(Exception $e)
|
||||
{
|
||||
/* redirect to Index page with Fails Message */
|
||||
return redirect('sla')->with('fails','SLA Plan can not Update');
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the specified resource from storage.
|
||||
*
|
||||
* @param int $id
|
||||
* @return Response
|
||||
*/
|
||||
public function destroy($id, Sla_plan $sla)
|
||||
{
|
||||
try
|
||||
{
|
||||
/* Delete a perticular field from the database by delete() using Id */
|
||||
$slas = $sla->whereId($id)->first();
|
||||
/* Check whether function success or not */
|
||||
|
||||
if($slas->delete()==true)
|
||||
{
|
||||
/* redirect to Index page with Success Message */
|
||||
return redirect('sla')->with('success','SLA Plan Deleted Successfully');
|
||||
}
|
||||
else
|
||||
{
|
||||
/* redirect to Index page with Fails Message */
|
||||
return redirect('sla')->with('fails','SLA Plan can not Delete');
|
||||
}
|
||||
}
|
||||
catch(Exception $e)
|
||||
{
|
||||
/* redirect to Index page with Fails Message */
|
||||
return redirect('sla')->with('fails','SLA Plan can not Delete');
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user