CasperSecurity
<?php
namespace App\Http\Controllers;
use App\Models\LeaveType;
use App\Http\Requests\StoreLeaveTypeRequest;
use App\Http\Requests\UpdateLeaveTypeRequest;
class LeaveTypeController 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\StoreLeaveTypeRequest $request
* @return \Illuminate\Http\Response
*/
public function store(StoreLeaveTypeRequest $request)
{
//
}
/**
* Display the specified resource.
*
* @param \App\Models\LeaveType $leaveType
* @return \Illuminate\Http\Response
*/
public function show(LeaveType $leaveType)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Models\LeaveType $leaveType
* @return \Illuminate\Http\Response
*/
public function edit(LeaveType $leaveType)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \App\Http\Requests\UpdateLeaveTypeRequest $request
* @param \App\Models\LeaveType $leaveType
* @return \Illuminate\Http\Response
*/
public function update(UpdateLeaveTypeRequest $request, LeaveType $leaveType)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param \App\Models\LeaveType $leaveType
* @return \Illuminate\Http\Response
*/
public function destroy(LeaveType $leaveType)
{
//
}
}