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