Redirect 302 redirect from POST @app_login (06b826)

GET https://sys.admin.nenocourier.co.ke/

Query Metrics

11 Database Queries
11 Different statements
523.30 ms Query time
0 Invalid entities
1 Managed entities

Grouped Statements

Show all queries

Time Count Info
302.77 ms
(57.86%)
1
SELECT 
                DATE(created_at) AS account_date,
                COUNT(id) AS tx_count,
                IFNULL(SUM(amount), 0) AS revenue
            FROM transaction
            WHERE created_at >= ? AND created_at <= ? AND is_cancelled = 0
            GROUP BY DATE(created_at)
            ORDER BY account_date ASC
Parameters:
[
  "2026-09-17 00:00:00"
  "2026-09-23 23:59:59"
]
84.16 ms
(16.08%)
1
SELECT COUNT(*) FROM transaction WHERE created_at >= ? AND is_cancelled = 0
Parameters:
[
  "2026-09-23 00:00:00"
]
52.96 ms
(10.12%)
1
SELECT 
                COUNT(t.id) AS transactions, 
                IFNULL(SUM(t.amount), 0) AS amount
            FROM transaction t
            WHERE t.created_at >= ? AND t.created_at <= ? AND t.is_cancelled = 0
Parameters:
[
  "2026-09-23 00:00:00"
  "2026-09-23 23:59:59"
]
40.00 ms
(7.64%)
1
SELECT IFNULL(SUM(se.amount), 0) AS expenses
            FROM station_expense se
            WHERE se.created_at >= ? AND se.created_at <= ? AND se.is_cancelled = 0
Parameters:
[
  "2026-09-23 00:00:00"
  "2026-09-23 23:59:59"
]
17.01 ms
(3.25%)
1
SELECT 
                t.id, 
                t.amount, 
                t.payment_method, 
                t.created_at,
                t.is_paid,
                w.id AS waybill_id,
                w.sender_name,
                w.sender_phone_number,
                w.receiver_name,
                w.receiver_phone_number,
                w.percel_count,
                w.is_collected,
                sf.station_name AS from_station, 
                st.station_name AS to_station
            FROM transaction t
            LEFT JOIN way_bill w ON t.way_bill_id = w.id
            LEFT JOIN station sf ON w.from_station_id = sf.id
            LEFT JOIN station st ON w.to_station_id = st.id
            WHERE t.is_cancelled = 0
            ORDER BY t.id DESC
            LIMIT 15
Parameters:
[]
13.46 ms
(2.57%)
1
SELECT u0_.id AS id_0, u0_.username AS username_1, u0_.password AS password_2, u0_.email AS email_3, u0_.roles AS roles_4, u0_.is_active AS is_active_5, u0_.person_id AS person_id_6 FROM user u0_ WHERE u0_.username = ? OR u0_.email = ?
Parameters:
[
  "0712907075"
  "0712907075"
]
6.45 ms
(1.23%)
1
SELECT 
                s.id, 
                s.station_name, 
                COUNT(t.id) AS tx_count, 
                IFNULL(SUM(t.amount), 0) AS revenue
            FROM station s
            JOIN way_bill w ON w.from_station_id = s.id
            JOIN transaction t ON t.way_bill_id = w.id
            WHERE t.created_at >= ? AND t.created_at <= ? AND t.is_cancelled = 0
            GROUP BY s.id, s.station_name
            ORDER BY revenue DESC
            LIMIT 8
Parameters:
[
  "2026-09-23 00:00:00"
  "2026-09-23 23:59:59"
]
1.99 ms
(0.38%)
1
SELECT MAX(id) FROM way_bill
Parameters:
[]
1.97 ms
(0.38%)
1
SELECT COUNT(*) FROM vehicle
Parameters:
[]
1.47 ms
(0.28%)
1
SELECT COUNT(*) FROM user WHERE is_active = 1
Parameters:
[]
1.04 ms
(0.20%)
1
SELECT COUNT(*) FROM station WHERE is_active = 1
Parameters:
[]

Database Connections

Name Service
default doctrine.dbal.default_connection

Entity Managers

Name Service
default doctrine.orm.default_entity_manager

Second Level Cache

Second Level Cache is not enabled.

Managed Entities

default entity manager

Class Amount of managed objects
App\Entity\User 1

Entities Mapping

Class Mapping errors
App\Entity\User No errors.