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');
}
}