CasperSecurity
<?php
namespace App\Http\Controllers;
use App\Models\EmployeeType;
use App\Http\Requests\StoreEmployeeTypeRequest;
use App\Http\Requests\UpdateEmployeeTypeRequest;
class EmployeeTypeController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
//
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*
* @param \App\Http\Requests\StoreEmployeeTypeRequest $request
* @return \Illuminate\Http\Response
*/
public function store(StoreEmployeeTypeRequest $request)
{
//
}
/**
* Display the specified resource.
*
* @param \App\Models\EmployeeType $employeeType
* @return \Illuminate\Http\Response
*/
public function show(EmployeeType $employeeType)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Models\EmployeeType $employeeType
* @return \Illuminate\Http\Response
*/
public function edit(EmployeeType $employeeType)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \App\Http\Requests\UpdateEmployeeTypeRequest $request
* @param \App\Models\EmployeeType $employeeType
* @return \Illuminate\Http\Response
*/
public function update(UpdateEmployeeTypeRequest $request, EmployeeType $employeeType)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param \App\Models\EmployeeType $employeeType
* @return \Illuminate\Http\Response
*/
public function destroy(EmployeeType $employeeType)
{
//
}
}