i face this issue cant connect database https://prnt.sc/xWf8LswYc2l2
How to Move Database from Laragon to Laragon
How to Move Database from Laragon to Laragon menual
advance thanks
is this is for local development? if it is, surely you can just run artisan migrate pointing to your mysql instance?
if you are needing to move mysql database files then its possible by copying the binaries
here is an approach: https://dba.stackexchange.com/questions/174/how-can-i-move-a-database-from-one-server-to-another
for laravel development you should be using migrations to create and modify database structure and seeders for inserting common data. That way, you can restore from scratch at any point and shouldn't rely on copying sql files from one place to another.
Please or to participate in this conversation.