how to change start route / to /home route in laravel code example
Example: how to create route in laravel
Route::match(['get', 'post'], '/', function () {
//
});
Route::match(['get', 'post'], '/', function () {
//
});