7 lines
89 B
PHP
7 lines
89 B
PHP
<?php
|
|
function site_url($path)
|
|
{
|
|
return env("APP_URL"). $path;
|
|
//return $path;
|
|
}
|