Subversion-Projekte lars-tiefland.laravel_shop

Revision

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

Revision 1518 Revision 1519
Zeile 89... Zeile 89...
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
            \View::share( "lType", "k" );
94
            $action = Action::with( 'medium.medium' )->find( $id );
94
            $action = Action::find( $id );
95
            return view( 'admin/action', [ "action" => $action, ] );
95
            return view( 'admin/action', [ "action" => $action, ] );
96
        }
96
        }
Zeile 97... Zeile 97...
97
 
97