Subversion-Projekte lars-tiefland.laravel_shop

Revision

Revision 1245 | Revision 1249 | Zur aktuellen Revision | Details | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

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