Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
laravel
/
fortify
/
src
:
RoutePath.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Laravel\Fortify; class RoutePath { /** * Get the route path for the given route name. * * @param string $routeName * @param string $default * @return string */ public static function for(string $routeName, string $default) { return config('fortify.paths.'.$routeName) ?? $default; } }