Cómo establecer un comentario en la tabla usando Laravel Schema Builder

¿Cómo establecer un comentario en la tabla usando Laravel Schema Builder?

Conjunto de columnas:

public function up()
{
    Schema::create('vendors', function (Blueprint $table) 
    {
        $table->comment('not working - error'); // not working - error
        $table->increments('id');
        $table->string('vendor', 255)->comment('Some comment.');
        $table->timestamps();
    });
}

Pero para la mesa?

Respuestas a la pregunta(1)

Su respuesta a la pregunta