raveesgohiel/dbscanner

A package for Laravel that will simply allow user to get some valuable stats like total users, total tables in the DB, total rows and fields in each table and more.

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/raveesgohiel/dbscanner

dev-main 2025-05-29 20:51 UTC

This package is auto-updated.

Last update: 2025-12-29 21:58:12 UTC


README

A Laravel Pacakge to help developers scan their MySQL DB to get a list of tables, all the columns, total row counts. This could be helppul for developers to not have to wrtie a lot fo queries and get it all by just using a simple package.

USAGE

use Raveesgohiel\Dbscanner\Facades\DbScanner;

You must add the DbScanner class to your controller. Then just use the scan(). The usage is shown below

$db_report = DbScanner::scan();

This will return an array of all the tables, with fields, primary keys and even total row count.