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

Revision

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

Revision 143 Revision 144
Zeile 30... Zeile 30...
30
    Route::middleware( [
30
    Route::middleware( [
31
        'auth',
31
        'auth',
32
        //'2fa'
32
        //'2fa'
33
    ] )->group( function ()
33
    ] )->group( function ()
34
    {
34
    {
-
 
35
        Route::view( "/", "index" );
-
 
36
        Route::get( "/actions/{id}/getMedia", [
-
 
37
            ActionMediumController::class,
-
 
38
            "liste"
-
 
39
        ] );
-
 
40
        Route::resource( 'backend_users', BackendUserController::class );
35
        Route::get( '/logout', [
41
        Route::get( '/logout', [
36
            BackendController::class,
42
            BackendController::class,
37
            'destroy'
43
            'destroy'
38
        ] )->name( 'logout' );
44
        ] )->name( 'logout' );
-
 
45
        Route::resource( 'media', MediumController::class );
-
 
46
        Route::prefix( "/Online-Shop" )->group( function ()
-
 
47
        {
-
 
48
            Route::resource( '/actions', ActionController::class );
-
 
49
            Route::resource( "/shippings", ShippingController::class );
-
 
50
            Route::resource( "/shippingGroups", ShippingGroupController::class );
-
 
51
        } );
39
        Route::prefix( "/toolbox" )->group( function ()
52
        Route::prefix( "/toolbox" )->group( function ()
40
        {
53
        {
41
            Route::get( "/ga", [
54
            Route::get( "/ga", [
42
                GoogleAuthenticatorController::class,
55
                GoogleAuthenticatorController::class,
43
                "create"
56
                "create"
Zeile 65... Zeile 78...
65
            Route::get( "/readSVNLog", [
78
            Route::get( "/readSVNLog", [
66
                ToolboxController::class,
79
                ToolboxController::class,
67
                "readSVNLog"
80
                "readSVNLog"
68
            ] );
81
            ] );
69
        } );
82
        } );
70
        Route::resource( 'media', MediumController::class );
-
 
-
 
83
 
71
        Route::prefix( "/Online-Shop" )->group( function ()
84
        Route::prefix( "vportale" )->group( function ()
72
        {
85
        {
73
            Route::resource( '/actions', ActionController::class );
-
 
74
            Route::resource( "/shippings", ShippingController::class );
-
 
75
            Route::resource( "/shippingGroups", ShippingGroupController::class );
86
            Route::resource( "salesPortals", \App\Http\Controllers\SalesPortalController::class );
76
        } );
87
        } );
77
 
-
 
78
        Route::resource( 'backend_users', BackendUserController::class );
-
 
79
        Route::prefix( "/Warenwirtschaft" )->group( function ()
88
        Route::prefix( "/Warenwirtschaft" )->group( function ()
80
        {
89
        {
81
            Route::resource( 'orders', OrderController::class );
90
            Route::resource( 'orders', OrderController::class );
82
        } );
91
        } );
83
        Route::prefix( "vportale" )->group( function ()
-
 
84
        {
-
 
85
            Route::resource( "salesPortals", \App\Http\Controllers\SalesPortalController::class );
-
 
86
        } );
-
 
87
        Route::get( "/actions/{id}/getMedia", [
-
 
88
            ActionMediumController::class,
-
 
89
            "liste"
-
 
90
        ] );
-
 
91
        Route::view( "/", "index" );
-
 
92
    } );
92
    } );