Uploaded From CV. Swandhana Server

This commit is contained in:
Duidev Software House
2025-01-27 08:16:55 +07:00
commit 6b3be42361
15186 changed files with 2328862 additions and 0 deletions
+51
View File
@@ -0,0 +1,51 @@
<?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);
}
}