Blame | Letzte Änderung | Log anzeigen | RSS feed
<?phpnamespace App\Http\Controllers;use App\Http\Requests\StoreActionTypeRequest;use App\Http\Requests\UpdateActionTypeRequest;use App\Models\ActionType;class ActionTypeController 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\StoreActionTypeRequest $request* @return \Illuminate\Http\Response*/public function store(StoreActionTypeRequest $request){//}/*** Display the specified resource.** @param \App\Models\ActionType $actionType* @return \Illuminate\Http\Response*/public function show(ActionType $actionType){//}/*** Show the form for editing the specified resource.** @param \App\Models\ActionType $actionType* @return \Illuminate\Http\Response*/public function edit(ActionType $actionType){//}/*** Update the specified resource in storage.** @param \App\Http\Requests\UpdateActionTypeRequest $request* @param \App\Models\ActionType $actionType* @return \Illuminate\Http\Response*/public function update(UpdateActionTypeRequest $request, ActionType $actionType){//}/*** Remove the specified resource from storage.** @param \App\Models\ActionType $actionType* @return \Illuminate\Http\Response*/public function destroy(ActionType $actionType){//}}