Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

braed's avatar
Level 1

Database Viewer

I'm not (yet?) comfortable using CLI to setup a linux server and Forge makes this a breeze. I'd like to be able to view my database via a GUI.

Is there a simple PHPMyAdmin integration? Might we expect to see a page for viewing our database?

0 likes
6 replies
martinbean's avatar
Level 80

@braed There are desktop-based applications such as Sequel Pro if you’re using macOS for remotely managing databases.

You shouldn’t really have web-based SQL editors installed on your server as it’s a huge vulnerability if someone were to get access to your server.

1 like
Cronix's avatar

For added security, you may only connect to the database via a SSH tunnel.

See the first things on this page: https://forge.besnappy.com/laravel-forge

It's been quite awhile since I've used PhpMyAdmin and not sure if it can do tunneling and use ssh keys. If it can it should work. I definitely wouldn't install it on your actual server through! I use Sequel Pro and Navicat and don't have issues connecting to it. Sequel Pro is free (mac).

braed's avatar
Level 1

I didn't realise this was possible but I used my SQL database client (Heidi) to SSH into my Forge server and view my database. Thanks for your comments.

Robstar's avatar

On a side note, why would you need to login to your production database?

That should surely be a pretty rare requirement.

Using normal migrations in Laravel is normally sufficient.

If you need to view the database visually then use something on your local machine. I'm of the view that remote access to your production database is rarely a good thing or something that is required.

braed's avatar
Level 1

@ROBSTAR - That's a great point, Robstar. I was developing on my server briefly before launching and wanted to debug an issue which I think turned out to be caching.

Please or to participate in this conversation.