<?php

use Illuminate\Support\Facades\Route;


Route::get('/test', function () {
    return 'Hello from the custom route file!';
});