I\'ve these two database tables:
User Tables will handle this kind of informations
Set the country_id and the state_id nullable, like so.
country_id
state_id
$table->integer('country_id')->nullable()->unsigned(); $table->integer('state_id')->nullable()->unsigned();