8baf129
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php if (!function_exists('public_path')) { /** * Return the path to public dir * @param null $path * @return string */ function public_path($path = null) { return rtrim(app()->basePath('public/' . $path), '/'); } }