आप use($newtableschema)
. का उपयोग कर सकते हैं वेरिएबल को closure
. में पास करने के लिए :
Schema::create($newtableschema['tablename'], function($table) use($newtableschema) {
// So now you can access the $newtableschema variable here
// Rest of your code...
});