- Implemented a new logs page with filters for level, source, and date range. - Added a data table to display logs with pagination and sorting capabilities. - Created backend functionality to fetch logs data based on filters. - Introduced a new Logs class for handling log data operations. - Added a new database migration for the logs table. - Enhanced UI with custom checkbox styles for better user experience. - Updated navigation to include a link to the logs page.
13 lines
199 B
PHP
13 lines
199 B
PHP
<?php
|
|
namespace view;
|
|
|
|
class Logs
|
|
{
|
|
static public function main_view( $sources = [] )
|
|
{
|
|
return \Tpl::view( 'logs/main_view', [
|
|
'sources' => $sources,
|
|
] );
|
|
}
|
|
}
|