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

Revision

Revision 24 | Revision 27 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 24 Revision 26
Zeile 38... Zeile 38...
38
                    $status = 2;
38
                    $status = 2;
39
                }
39
                }
40
                $aktion->status = $status;
40
                $aktion->status = $status;
Zeile 41... Zeile 41...
41
 
41
 
42
            }
42
            }
43
            return view( 'admin/actions', [ "aktionen" => $actions, ] );
43
            return view( 'actions', [ "aktionen" => $actions, ] );
Zeile 44... Zeile 44...
44
        }
44
        }
45
 
45
 
46
        /**
46
        /**
47
         * Show the form for creating a new resource.
47
         * Show the form for creating a new resource.
48
         *
48
         *
49
         */
49
         */
50
        public function create(): Factory|View|Application
50
        public function create(): Factory|View|Application
51
        {
51
        {
52
            //
52
            //
Zeile 53... Zeile 53...
53
            return view( 'admin/action' );
53
            return view( 'action' );
54
        }
54
        }
55
 
55
 
Zeile 90... Zeile 90...
90
        public function edit( int $id ): Factory|View|Application
90
        public function edit( int $id ): Factory|View|Application
91
        {
91
        {
92
            //
92
            //
93
            \View::share( "lType", "k" );
93
            \View::share( "lType", "k" );
94
            $action = Action::find( $id );
94
            $action = Action::find( $id );
95
            return view( 'admin/action', [ "action" => $action, ] );
95
            return view( 'action', [ "action" => $action, ] );
96
        }
96
        }
Zeile 97... Zeile 97...
97
 
97
 
98
 
98