I\'m trying to create a table dynamically upon an admin request, and while it seems all fun and dandy like in most of Laravel\'s documentation, I can\'t seem to create>
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
Schema::create('tableName', function (Blueprint $table) {
$table->increments('id');
$table->timestamps();
});