8 lines
139 B
PHP
8 lines
139 B
PHP
<?php
|
|
|
|
if (! function_exists('make_old_url')) {
|
|
function make_old_url($path)
|
|
{
|
|
return config('app.old_url').$path;
|
|
}
|
|
}
|