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