Subversion-Projekte lars-tiefland.laravel_shop

Revision

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

Revision 1487 Revision 1514
Zeile 88... Zeile 88...
88
         * @return Factory|View|Application
88
         * @return Factory|View|Application
89
         */
89
         */
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
            $action = Action::find( $id );
94
            $action = Action::find( $id );
94
            return view( 'admin/action', [ "action" => $action, ] );
95
            return view( 'admin/action', [ "action" => $action, ] );
95
        }
96
        }