Just a tiny idea, which may or may not be interesting to others:
Add a "Go to" context menu to the Table/Data view so that you can go to a foreign key's definition. For instance, I have a table of staff members (named staff), which has a foreign key called "contact" from the table "contacts". When I view the staff table, it would be neat if I could select "Go to" in the "contact" field (which "points to" contacts.contact) so that the following SQL query was made and I was moved to the result of it:
SELECT * from contacts where contact = `the value that I choose to go to`;
The idea being that you then can quickly and conveniently verify what's at the "end of the" foreign key reference. This is something that my web UI will implement eventually, but during development it could be handy as you often have to manually build tables or seed (fill them in) them using Laravel's seed feature.
If this is unclear or just pretty stupid, please free to ignore my post :-)
Cheers, Archfrog