HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/shop.komma.nl/app/MyAccount/MyAccountRoutes.php
<?php declare(strict_types=1);


namespace App\MyAccount;


use Illuminate\Support\Facades\Route;

class MyAccountRoutes
{
    public static function web()
    {
        Route::get('my_account', MyAccountController::class.'@index')->name('my_account');
        Route::post('update_my_account', MyAccountController::class.'@update')->name('my_account.update');
        Route::get('my_account/orders', MyAccountController::class.'@ordersIndex')->name('site.my_account.orders');
    }
}