Skip to content
Advertisement

Is there any way to manage mysql users and get a database size in MySQL using Laravel Eloquent?

I’m currently making a hosting panel but I have some problems with the database management. Is there any way to manage(create/edit permissions/delete) mysql users and get a database size(MB) in MySQL using Laravel Eloquent? Currently using Laravel 8, thank you!

Advertisement

Answer

No this is not possible. Eloquent is purely a wrapper around queries for existing databases/users. If you need to do anything else like managing users within mysql you’ll have to do it with raw queries.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement