Subversion-Projekte lars-tiefland.webanos.faltradxxs.de

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
107 lars 1
<?php
2
 
3
namespace App\Http\Controllers;
4
 
5
use App\Http\Requests\StoreActionCategoryRequest;
6
use App\Http\Requests\UpdateActionCategoryRequest;
7
use App\Models\ActionCategory;
8
 
9
class ActionCategoryController extends Controller
10
{
11
    /**
12
     * Display a listing of the resource.
13
     *
14
     * @return \Illuminate\Http\Response
15
     */
16
    public function index()
17
    {
18
        //
19
    }
20
 
21
    /**
22
     * Show the form for creating a new resource.
23
     *
24
     * @return \Illuminate\Http\Response
25
     */
26
    public function create()
27
    {
28
        //
29
    }
30
 
31
    /**
32
     * Store a newly created resource in storage.
33
     *
34
     * @param  \App\Http\Requests\StoreActionCategoryRequest  $request
35
     * @return \Illuminate\Http\Response
36
     */
37
    public function store(StoreActionCategoryRequest $request)
38
    {
39
        //
40
    }
41
 
42
    /**
43
     * Display the specified resource.
44
     *
45
     * @param  \App\Models\ActionCategory  $actionCategory
46
     * @return \Illuminate\Http\Response
47
     */
48
    public function show(ActionCategory $actionCategory)
49
    {
50
        //
51
    }
52
 
53
    /**
54
     * Show the form for editing the specified resource.
55
     *
56
     * @param  \App\Models\ActionCategory  $actionCategory
57
     * @return \Illuminate\Http\Response
58
     */
59
    public function edit(ActionCategory $actionCategory)
60
    {
61
        //
62
    }
63
 
64
    /**
65
     * Update the specified resource in storage.
66
     *
67
     * @param  \App\Http\Requests\UpdateActionCategoryRequest  $request
68
     * @param  \App\Models\ActionCategory  $actionCategory
69
     * @return \Illuminate\Http\Response
70
     */
71
    public function update(UpdateActionCategoryRequest $request, ActionCategory $actionCategory)
72
    {
73
        //
74
    }
75
 
76
    /**
77
     * Remove the specified resource from storage.
78
     *
79
     * @param  \App\Models\ActionCategory  $actionCategory
80
     * @return \Illuminate\Http\Response
81
     */
82
    public function destroy(ActionCategory $actionCategory)
83
    {
84
        //
85
    }
86
}