Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current none :
/
var
/
www
/
html
/
tpid-karpenter
/
api
/
vendor
/
arcanedev
/
log-viewer
/
Or
Select Your none :
Upload File :
New :
File
Dir
/var/www/html/tpid-karpenter/api/vendor/arcanedev/log-viewer/helpers.php
<?php use Arcanedev\LogViewer\Contracts; if ( ! function_exists('log_viewer')) { /** * Get the LogViewer instance. * * @return Arcanedev\LogViewer\Contracts\LogViewer */ function log_viewer() { return app(Contracts\LogViewer::class); } } if ( ! function_exists('log_levels')) { /** * Get the LogLevels instance. * * @return Arcanedev\LogViewer\Contracts\Utilities\LogLevels */ function log_levels() { return app(Contracts\Utilities\LogLevels::class); } } if ( ! function_exists('log_menu')) { /** * Get the LogMenu instance. * * @return Arcanedev\LogViewer\Contracts\Utilities\LogMenu */ function log_menu() { return app(Contracts\Utilities\LogMenu::class); } } if ( ! function_exists('log_styler')) { /** * Get the LogStyler instance. * * @return Arcanedev\LogViewer\Contracts\Utilities\LogStyler */ function log_styler() { return app(Contracts\Utilities\LogStyler::class); } } if ( ! function_exists('extract_date')) { /** * Extract date from string (format : YYYY-MM-DD). * * @param string $string * * @return string */ function extract_date($string) { return preg_replace('/.*('.REGEX_DATE_PATTERN.').*/', '$1', $string); } }