|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/leadai/webmaster.leadai.co.in/vendor/arcanedev/log-viewer/ |
Upload File : |
<?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);
}
}