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.