I think you can start with -
hah, okay - I found another easy way ^^
You can use this code in your controller:
Schema::table('user_option_values', function ($table) {
$optionName = Input::get('myInput');
$table->string($optionName);
});
Input::get is globally available instead of my solution ^^ But thanks for your help, @ndy40 :)
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community