2024-01-11 14:07:27 +01:00
|
|
|
<?php
|
|
|
|
|
|
2024-06-05 15:35:46 +02:00
|
|
|
if(!function_exists('front_url')) {
|
|
|
|
|
function front_url($path = '')
|
|
|
|
|
{
|
|
|
|
|
$baseUrl = config('app.front_url');
|
|
|
|
|
if (! $baseUrl) {
|
|
|
|
|
return $path;
|
|
|
|
|
}
|
2024-01-11 14:07:27 +01:00
|
|
|
|
2024-06-05 15:35:46 +02:00
|
|
|
return rtrim($baseUrl, '/').'/'.ltrim($path, '/');
|
|
|
|
|
}
|
2024-01-11 14:07:27 +01:00
|
|
|
}
|